From d185783987cd11d2c81f3a4053e4dd75124390f9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 5 Mar 2023 22:28:55 -0800 Subject: [PATCH] Fixed: Migrations on SQLite 3.41.0 --- .../Datastore/Migration/158_cdh_per_downloadclient.cs | 2 +- .../Datastore/Migration/Framework/NzbDroneSqliteProcessor.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/158_cdh_per_downloadclient.cs b/src/NzbDrone.Core/Datastore/Migration/158_cdh_per_downloadclient.cs index 14cb67df5..786172d07 100644 --- a/src/NzbDrone.Core/Datastore/Migration/158_cdh_per_downloadclient.cs +++ b/src/NzbDrone.Core/Datastore/Migration/158_cdh_per_downloadclient.cs @@ -36,7 +36,7 @@ namespace NzbDrone.Core.Datastore.Migration removeFailedDownloads = false; } - using (var updateClientCmd = conn.CreateCommand(tran, $"UPDATE DownloadClients SET RemoveCompletedDownloads = (CASE WHEN Implementation IN (\"RTorrent\", \"Flood\") THEN 0 ELSE ? END), RemoveFailedDownloads = ?")) + using (var updateClientCmd = conn.CreateCommand(tran, $"UPDATE DownloadClients SET RemoveCompletedDownloads = (CASE WHEN Implementation IN ('RTorrent', 'Flood') THEN 0 ELSE ? END), RemoveFailedDownloads = ?")) { updateClientCmd.AddParameter(removeCompletedDownloads ? 1 : 0); updateClientCmd.AddParameter(removeFailedDownloads ? 1 : 0); diff --git a/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneSqliteProcessor.cs b/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneSqliteProcessor.cs index 5b1fb0a58..189becbda 100644 --- a/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneSqliteProcessor.cs +++ b/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneSqliteProcessor.cs @@ -23,6 +23,11 @@ namespace NzbDrone.Core.Datastore.Migration.Framework public override bool SupportsTransactions => true; + public override bool TableExists(string schemaName, string tableName) + { + return Exists("select count(*) from sqlite_master where name='{0}' and type='table'", tableName); + } + public override void Process(AlterColumnExpression expression) { var tableDefinition = GetTableSchema(expression.TableName);