From 410b4574bcc920c7c7ec7bdedaa9ff10c2f7a552 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 13 Oct 2012 00:24:53 -0700 Subject: [PATCH] Fixed db name in migration --- NzbDrone.Core/Datastore/Migrations/Migration20121012.cs | 2 +- NzbDrone.Core/NzbDrone.Core.csproj | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Core/Datastore/Migrations/Migration20121012.cs b/NzbDrone.Core/Datastore/Migrations/Migration20121012.cs index 2a34bdb4b..fe055f9d3 100644 --- a/NzbDrone.Core/Datastore/Migrations/Migration20121012.cs +++ b/NzbDrone.Core/Datastore/Migrations/Migration20121012.cs @@ -11,7 +11,7 @@ namespace NzbDrone.Core.Datastore.Migrations { protected override void MainDbUpgrade() { - Database.AddColumn("Episode", new Column("AbsoluteEpisodeNumber", DbType.Int32, ColumnProperty.Null)); + Database.AddColumn("Episodes", new Column("AbsoluteEpisodeNumber", DbType.Int32, ColumnProperty.Null)); } } } \ No newline at end of file diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index cf3932439..ec13af4a1 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -226,6 +226,7 @@ +