using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(47)] public class add_temporary_blacklist_columns : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Alter.Table("Blacklist").AddColumn("PublishedDate").AsDateTime().Nullable(); } } }