Radarr/src/NzbDrone.Core/Datastore/Migration/105_fix_history_movieId.cs

16 lines
393 B
C#
Raw Normal View History

2017-01-03 22:59:41 +00:00
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(105)]
public class fix_history_movieId : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("History")
.AddColumn("MovieId").AsInt32().WithDefaultValue(0);
}
}
}