Store QualityPofile properly

This commit is contained in:
Mark McDowall 2013-03-26 01:02:31 -07:00
commit b6ac7638a1
9 changed files with 80 additions and 10 deletions

View file

@ -105,7 +105,7 @@ namespace NzbDrone.Core.Datastore.Migration
.WithColumn("Id").AsInt32().PrimaryKey().Identity()
.WithColumn("CleanTitle").AsString().NotNullable()
.WithColumn("SceneName").AsString().NotNullable()
.WithColumn("SeriesId").AsInt32().NotNullable()
.WithColumn("TvdbId").AsInt32().NotNullable()
.WithColumn("SeasonNumber").AsInt32().NotNullable();
Create.Table("Seasons")