mirror of
https://github.com/Radarr/Radarr
synced 2025-03-14 16:09:37 +00: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 @@ 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()
|
||||
|
|
Loading…
Add table
Reference in a new issue