Skip to content

Commit

Permalink
Merge branch 'public/9.0' into public/9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Dec 3, 2024
2 parents 30e02b6 + f3d0568 commit 19f1022
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Changelog9.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ <h2><a name="v9.0.1" id="v9.0.1"></a>Version 9.0.1</h2>

<li>Bug Fixes:</li>
<ul>
<li></li>
<li><a href="https://github.com/LMS-Community/slimserver/pull/1235">#1235</a> - Need to utf8Decode album title for new &amp; changed (thanks @darrel-k!)</li>
<li><a href="https://github.com/LMS-Community/slimserver/pull/1237">#1237</a> - Fix create table syntax for MySQL (MariaDB) (thanks @JKDingwall!)</li>
</ul>
<br />

Expand Down
4 changes: 2 additions & 2 deletions SQL/mysql/schema_23_up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ALTER TABLE albums ADD subtitle blob;
ALTER TABLE albums ADD label blob;
CREATE INDEX tracksWorkIndex ON tracks (work);
CREATE TABLE works (
id integer PRIMARY KEY AUTOINCREMENT,
composer integer,
id integer PRIMARY KEY AUTO_INCREMENT,
composer int(10) unsigned,
title blob,
titlesort text,
titlesearch text,
Expand Down

0 comments on commit 19f1022

Please sign in to comment.