1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Add MovieId and Language Index to Movie Translations Table

This commit is contained in:
Qstick 2020-07-25 22:42:47 -04:00
parent e2165eb51b
commit 483c2ae724

View File

@ -0,0 +1,15 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(179)]
public class movie_translation_indexes : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Create.Index("IX_MovieTranslations_Language").OnTable("MovieTranslations").OnColumn("Language");
Create.Index("IX_MovieTranslations_MovieId").OnTable("MovieTranslations").OnColumn("MovieId");
}
}
}