Merge with Kayone.

This commit is contained in:
Mark McDowall
2011-06-16 20:46:14 -07:00
25 changed files with 669 additions and 320 deletions

View File

@@ -53,6 +53,10 @@ namespace NzbDrone.Core.Datastore.Migrations
.WithNotNullableColumn("Size", DbType.Int64)
.WithNotNullableColumn("DateAdded", DbType.DateTime)
.WithNotNullableColumn("SeasonNumber", DbType.Int16);
db.CreateTable("Config")
.WithNotNullableColumn("Key", DbType.String).Unique()
.WithNotNullableColumn("Value", DbType.String);
}
}
}