diff --git a/src/NzbDrone.Core/Datastore/Migration/140_add_alternative_titles_table.cs b/src/NzbDrone.Core/Datastore/Migration/140_add_alternative_titles_table.cs index 4614139b0..ba8a12a40 100644 --- a/src/NzbDrone.Core/Datastore/Migration/140_add_alternative_titles_table.cs +++ b/src/NzbDrone.Core/Datastore/Migration/140_add_alternative_titles_table.cs @@ -8,7 +8,7 @@ namespace NzbDrone.Core.Datastore.Migration { protected override void MainDbUpgrade() { - if (!Schema.Table("alternative_titles").Exists()) + if (!Schema.Table("AlternativeTitles").Exists()) { Create.TableForModel("AlternativeTitles") .WithColumn("MovieId").AsInt64().NotNullable()