From 1b39911135a7b73c1975b632bca33e8539736630 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 25 Mar 2017 22:18:57 -0700 Subject: [PATCH] True/False for config settings value --- src/NzbDrone.Core/Datastore/Migration/109_import_extra_files.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/109_import_extra_files.cs b/src/NzbDrone.Core/Datastore/Migration/109_import_extra_files.cs index 03bf220ee..e92e00a78 100644 --- a/src/NzbDrone.Core/Datastore/Migration/109_import_extra_files.cs +++ b/src/NzbDrone.Core/Datastore/Migration/109_import_extra_files.cs @@ -32,7 +32,7 @@ namespace NzbDrone.Core.Datastore.Migration using (var insertCmd = conn.CreateCommand()) { insertCmd.Transaction = tran; - insertCmd.CommandText = "INSERT INTO Config (Key, Value) VALUES('importextrafiles', 1)"; + insertCmd.CommandText = "INSERT INTO Config (Key, Value) VALUES('importextrafiles', 'True')"; insertCmd.ExecuteNonQuery(); } }