diff --git a/src/NzbDrone.Core/Datastore/Migration/179_movie_translation_indexes.cs b/src/NzbDrone.Core/Datastore/Migration/179_movie_translation_indexes.cs new file mode 100644 index 000000000..c674a7b5c --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/179_movie_translation_indexes.cs @@ -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"); + } + } +}