mirror of
https://github.com/Radarr/Radarr
synced 2026-01-08 08:33:55 +01:00
Fix table name for Alternative Titles migrations
This commit is contained in:
parent
ff0a04c331
commit
358ff0c130
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ public class add_alternative_titles_table : NzbDroneMigrationBase
|
|||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
if (!Schema.Table("alternative_titles").Exists())
|
||||
if (!Schema.Table("AlternativeTitles").Exists())
|
||||
{
|
||||
Create.TableForModel("AlternativeTitles")
|
||||
.WithColumn("MovieId").AsInt64().NotNullable()
|
||||
|
|
|
|||
Loading…
Reference in a new issue