From 1c392ebee8dca6ae2f2e8a5f0355831a3de03f0b Mon Sep 17 00:00:00 2001 From: Harshith Mohan <26010946+harshithmohan@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:44:37 +0530 Subject: [PATCH] Fix mssql migration for adding `TmdbShowID` to `Trakt_Show` table --- Shoko.Server/Databases/SQLServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shoko.Server/Databases/SQLServer.cs b/Shoko.Server/Databases/SQLServer.cs index f85bffd59..ec8ccbdfa 100644 --- a/Shoko.Server/Databases/SQLServer.cs +++ b/Shoko.Server/Databases/SQLServer.cs @@ -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), };