Correct the Kickass migration (#649)

This commit is contained in:
Devin Buhl 2017-02-07 16:36:35 -05:00 committed by GitHub
parent 32c5c4d741
commit 1f68b46575
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(129)]
public class remove_kickass_again : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Delete.FromTable("Indexers").Row(new { Implementation = "KickassTorrents" });
}
}
}