Radarr/NzbDrone.Core/Datastore/Migration/005_added_eventtype_to_hist...

18 lines
423 B
C#
Raw Normal View History

2013-06-11 01:55:05 +00:00
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(5)]
public class added_eventtype_to_history : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("History")
.AddColumn("EventType")
.AsInt32()
.Nullable();
}
}
}