Release group is added to history and episodefile

This commit is contained in:
Mark McDowall 2012-08-05 23:33:07 -07:00
commit 6f3262c68a
9 changed files with 37 additions and 11 deletions

View file

@ -12,6 +12,8 @@ namespace NzbDrone.Core.Datastore.Migrations
protected override void MainDbUpgrade()
{
Database.AddColumn("EpisodeFiles", new Column("SceneName", DbType.String, ColumnProperty.Null));
Database.AddColumn("EpisodeFiles", new Column("ReleaseGroup", DbType.String, ColumnProperty.Null));
Database.AddColumn("History", new Column("ReleaseGroup", DbType.String, ColumnProperty.Null));
}
}
}