True/False for config settings value

This commit is contained in:
Mark McDowall 2017-03-25 22:18:57 -07:00
parent 6aaefae2d5
commit 1b39911135
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}