Radarr/src/NzbDrone.Core/Datastore/Migration/176_movie_recommendations.cs

15 lines
384 B
C#

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("[]");
}
}
}