From 00db083adf632fdcdaa2551a24eec927882ff476 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 2 May 2014 14:56:14 -0700 Subject: [PATCH] Fixed: dognzb API URL --- .../Datastore/Migration/049_fix_dognzb_url.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs diff --git a/src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs b/src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs new file mode 100644 index 000000000..ebbe8d8c0 --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs @@ -0,0 +1,16 @@ +using FluentMigrator; +using NzbDrone.Core.Datastore.Migration.Framework; + +namespace NzbDrone.Core.Datastore.Migration +{ + [Migration(49)] + public class fix_dognzb_url : NzbDroneMigrationBase + { + protected override void MainDbUpgrade() + { + Execute.Sql("UPDATE Indexers SET Settings = replace(Settings, '//dognzb.cr', '//api.dognzb.cr')" + + "WHERE Implementation = 'Newznab'" + + "AND Settings LIKE '%//dognzb.cr%'"); + } + } +}