Skip to content

Commit

Permalink
Fix mssql migration for adding TmdbShowID to Trakt_Show table
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan committed Oct 14, 2024
1 parent b7d3a4e commit 1c392eb
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 @@ -776,7 +776,7 @@ public override bool HasVersionsTable()
new DatabaseCommand(131, 7, "DROP TABLE CrossRef_AniDB_TvDB_Episode;"),
new DatabaseCommand(131, 8, "DROP TABLE CrossRef_AniDB_TvDB_Episode_Override;"),
new DatabaseCommand(131, 9, "ALTER TABLE Trakt_Show DROP COLUMN TvDB_ID;"),
new DatabaseCommand(131, 10, "ALTER TABLE Trakt_Show ADD COLUMN TmdbShowID INT NULL;"),
new DatabaseCommand(131, 10, "ALTER TABLE Trakt_Show ADD TmdbShowID INT NULL;"),
new DatabaseCommand(131, 11, DatabaseFixes.CleanupAfterRemovingTvDB),
};

Expand Down

0 comments on commit 1c392eb

Please sign in to comment.