Skip to content

Commit 6603b49

Browse files
committed
fix: up content rating limit for MySQL/MariaDB
- Increased the column size for content-ratings for MySQL/MariaDB 4x, since some TMDB shows/movies can cross the previous _low_ size at _just_ 128 characters _when downloading all content ratings_ (which is now **not** done by default per [2f50967](2f50967)!) Fixes #1180
1 parent 73c372b commit 6603b49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Shoko.Server/Databases/MySQL.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Shoko.Server.Databases;
2727
public class MySQL : BaseDatabase<MySqlConnection>
2828
{
2929
public override string Name { get; } = "MySQL";
30-
public override int RequiredVersion { get; } = 137;
30+
public override int RequiredVersion { get; } = 138;
3131

3232
private List<DatabaseCommand> createVersionTable = new()
3333
{
@@ -835,6 +835,8 @@ public class MySQL : BaseDatabase<MySqlConnection>
835835
new(136, 9, "DROP TABLE IF EXISTS `AniDB_Seiyuu`"),
836836
new(136, 10, "DROP TABLE IF EXISTS `AniDB_Character_Seiyuu`"),
837837
new(137, 1, "ALTER TABLE `TMDB_Show` ADD COLUMN `PreferredAlternateOrderingID` VARCHAR(64) CHARACTER SET UTF8 NULL DEFAULT NULL;"),
838+
new(138, 1, "ALTER TABLE `TMDB_Show` CHANGE COLUMN `ContentRatings` VARCHAR(512) CHARACTER SET UTF8 NOT NULL"),
839+
new(138, 2, "ALTER TABLE `TMDB_Movie` CHANGE COLUMN `ContentRatings` VARCHAR(512) CHARACTER SET UTF8 NOT NULL"),
838840
};
839841

840842
private DatabaseCommand linuxTableVersionsFix = new("RENAME TABLE versions TO Versions;");

0 commit comments

Comments
 (0)