1
0
Fork 0
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:
Bogdan 2024-07-21 19:38:31 +03:00
parent ff0a04c331
commit 358ff0c130

View file

@ -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()