mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-30 02:41:45 +00:00
Fixed the migration to release restrictions
This commit is contained in:
parent
027ed1335f
commit
a8bea777d7
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ private void ConvertRestrictions(IDbConnection conn, IDbTransaction tran)
|
|||
using (IDbCommand insertCmd = conn.CreateCommand())
|
||||
{
|
||||
insertCmd.Transaction = tran;
|
||||
insertCmd.CommandText = "INSERT INTO Restrictions (Ignored, Tags) VALUES ('?', '[]')";
|
||||
insertCmd.CommandText = "INSERT INTO Restrictions (Ignored, Tags) VALUES (?, '[]')";
|
||||
insertCmd.AddParameter(restrictions);
|
||||
|
||||
insertCmd.ExecuteNonQuery();
|
||||
|
|
Loading…
Reference in a new issue