You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/src/NzbDrone.Core/Datastore/Migration/125_remove_notify_my_androi...

16 lines
499 B

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