mirror of https://github.com/Sonarr/Sonarr
True/False for config settings value
This commit is contained in:
parent
6aaefae2d5
commit
1b39911135
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue