Fix: NMA Migration issue

For those that have not migrated yet.
This commit is contained in:
Qstick 2018-09-13 21:42:00 -04:00
commit a069ce40ad

View file

@ -8,7 +8,7 @@ namespace NzbDrone.Core.Datastore.Migration
{
protected override void MainDbUpgrade()
{
Execute.Sql("DELETE FROM Notifications WHERE Implementation = 'Notify My Android';");
Delete.FromTable("Notifications").Row(new { Implementation = "NotifyMyAndroid" });
}
}
}