using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(15)] public class FixIndexes : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Create.Index().OnTable("Editions").OnColumn("BookId"); } } }