using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(118)] public class add_history_eventType_index : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Create.Index().OnTable("History").OnColumn("EventType"); } } }