From 06fb34ce6c8902d9de311a84328100735a661274 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 14 Apr 2012 17:57:15 -0700 Subject: [PATCH] Nzb Url column added. --- .../Datastore/Migrations/Migration20120414.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NzbDrone.Core/Datastore/Migrations/Migration20120414.cs diff --git a/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs b/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs new file mode 100644 index 000000000..6c6e296aa --- /dev/null +++ b/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs @@ -0,0 +1,15 @@ +using System.Data; +using Migrator.Framework; + +namespace NzbDrone.Core.Datastore.Migrations +{ + + [Migration(20120414)] + public class Migration20120414 : NzbDroneMigration + { + protected override void MainDbUpgrade() + { + Database.AddColumn("History", "Url", DbType.String, ColumnProperty.Null); + } + } +} \ No newline at end of file