using FluentMigrator; using NzbDrone.Core.Datastore.Migration.Framework; namespace NzbDrone.Core.Datastore.Migration { [Migration(176)] public class movie_recommendations : NzbDroneMigrationBase { protected override void MainDbUpgrade() { Alter.Table("Movies").AddColumn("Recommendations").AsString().WithDefaultValue("[]"); } } }