Fixed the migration to release restrictions

This commit is contained in:
Mark McDowall 2014-11-18 23:58:59 -08:00
parent 027ed1335f
commit a8bea777d7
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ namespace NzbDrone.Core.Datastore.Migration
using (IDbCommand insertCmd = conn.CreateCommand()) using (IDbCommand insertCmd = conn.CreateCommand())
{ {
insertCmd.Transaction = tran; insertCmd.Transaction = tran;
insertCmd.CommandText = "INSERT INTO Restrictions (Ignored, Tags) VALUES ('?', '[]')"; insertCmd.CommandText = "INSERT INTO Restrictions (Ignored, Tags) VALUES (?, '[]')";
insertCmd.AddParameter(restrictions); insertCmd.AddParameter(restrictions);
insertCmd.ExecuteNonQuery(); insertCmd.ExecuteNonQuery();