Change: Job Queue Description not required

This commit is contained in:
Gary Sharp
2014-02-04 10:51:33 +11:00
parent 3f63281dc4
commit ad28729a85
10 changed files with 360 additions and 322 deletions
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@ namespace Disco.Data.Migrations
string IMigrationMetadata.Id
{
get { return "201401270857381_DBv12"; }
get { return "201402032322432_DBv12"; }
}
string IMigrationMetadata.Source
@@ -39,7 +39,7 @@ namespace Disco.Data.Migrations
{
Id = c.Int(nullable: false, identity: true),
Name = c.String(nullable: false, maxLength: 100),
Description = c.String(nullable: false, maxLength: 500),
Description = c.String(maxLength: 500),
Icon = c.String(nullable: false, maxLength: 25),
IconColour = c.String(nullable: false, maxLength: 10),
DefaultSLAExpiry = c.Int(),
File diff suppressed because one or more lines are too long