using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(67)] public class add_added_to_series : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Alter.Table("Series").AddColumn("Added").AsDateTime().Nullable(); } } }