using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Tags("")] [Migration(12)] public class remove_custom_start_date : NzbDroneMigrationBase { protected override void MainDbUpgrade() { SQLiteAlter.DropColumns("Series", new[] { "CustomStartDate" }); } } }