Skip to content

Commit

Permalink
Fix sqlserver db migration for preferred tmdb ordering ID
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan authored Sep 22, 2024
1 parent 6b5b960 commit 3fb09af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Databases/SQLServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ public override bool HasVersionsTable()
new DatabaseCommand(128, 8, "INSERT INTO AniDB_Character_Creator (CharacterID, CreatorID) SELECT CharID, SeiyuuID FROM AniDB_Character_Seiyuu;"),
new DatabaseCommand(128, 9, "DROP TABLE AniDB_Seiyuu;"),
new DatabaseCommand(128, 10, "DROP TABLE AniDB_Character_Seiyuu;"),
new DatabaseCommand(129, 1, "ALTER TABLE TMDB_Show ADD COLUMN PreferredAlternateOrderingID NVARCHAR(64) NULL DEFAULT NULL;"),
new DatabaseCommand(129, 1, "ALTER TABLE TMDB_Show ADD PreferredAlternateOrderingID NVARCHAR(64) NULL DEFAULT NULL;"),
};

private static void AlterImdbMovieIDType()
Expand Down

0 comments on commit 3fb09af

Please sign in to comment.