From 1f68b465752322219f1e8268cb56854d4828c8a5 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Tue, 7 Feb 2017 16:36:35 -0500 Subject: [PATCH] Correct the Kickass migration (#649) --- .../Migration/129_remove_kickass_again.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/NzbDrone.Core/Datastore/Migration/129_remove_kickass_again.cs diff --git a/src/NzbDrone.Core/Datastore/Migration/129_remove_kickass_again.cs b/src/NzbDrone.Core/Datastore/Migration/129_remove_kickass_again.cs new file mode 100644 index 000000000..efabc0ecc --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/129_remove_kickass_again.cs @@ -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" }); + } + } +}