Radarr/src/NzbDrone.Core/Datastore/Migration/157_remove_growl_prowl.cs

18 lines
489 B
C#

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(157)]
public class remove_growl_prowl : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Delete.FromTable("Notifications").Row(new { Implementation = "Growl" });
// Prowl Added back
// Delete.FromTable("Notifications").Row(new { Implementation = "Prowl" });
}
}
}