Lidarr/src/NzbDrone.Core/Datastore/Migration/017_remove_nma.cs

15 lines
369 B
C#

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(17)]
public class remove_nma : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Delete.FromTable("Notifications").Row(new { Implementation = "NotifyMyAndroid" });
}
}
}