Chagned: Remove NMA Notifications (#371)

This commit is contained in:
Qstick
2018-05-26 23:31:58 -04:00
committed by GitHub
parent 3344810653
commit ff77eab156
6 changed files with 15 additions and 176 deletions
@@ -0,0 +1,14 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(17)]
public class remove_nma : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Execute.Sql("DELETE FROM Notifications WHERE Implementation = 'Notify My Android';");
}
}
}