using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(167)] public class add_tvdbid_to_episode : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Alter.Table("Episodes").AddColumn("TvdbId").AsInt32().Nullable(); } } }