Radarr/src/NzbDrone.Core/Datastore/Migration/130_remove_wombles_kickass.cs

16 lines
462 B
C#
Raw Normal View History

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(130)]
public class remove_wombles_kickass : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Delete.FromTable("Indexers").Row(new { Implementation = "Wombles" });
Delete.FromTable("Indexers").Row(new { Implementation = "KickassTorrents" });
}
}
2019-12-22 21:24:10 +00:00
}