Added some missing indexes to database

This commit is contained in:
Bogdan 2024-01-16 07:16:44 +02:00
parent 145cd74969
commit d76f08aba4
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(237)]
public class add_indexes : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Create.Index().OnTable("Blocklist").OnColumn("MovieId");
Create.Index().OnTable("Blocklist").OnColumn("Date");
Create.Index()
.OnTable("History")
.OnColumn("MovieId").Ascending()
.OnColumn("Date").Descending();
Delete.Index().OnTable("History").OnColumn("DownloadId");
Create.Index()
.OnTable("History")
.OnColumn("DownloadId").Ascending()
.OnColumn("Date").Descending();
Create.Index().OnTable("Movies").OnColumn("MovieFileId");
Create.Index().OnTable("Movies").OnColumn("Path");
}
}
}