From a069ce40ad434ddd98bda41e3498df0f75fa2263 Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 13 Sep 2018 21:42:00 -0400 Subject: [PATCH] Fix: NMA Migration issue For those that have not migrated yet. --- src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs b/src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs index 530506dc4..177ca24e5 100644 --- a/src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs +++ b/src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs @@ -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" }); } } }