This commit is contained in:
Brice Lambson 2015-08-28 12:11:30 -07:00
parent 8ccfb99624
commit b95f67733d
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
c => new c => new
{ {
BlogId = c.Column<int>().Annotation("SqlServer:ValueGenerationStrategy", SqlServerIdentityStrategy.IdentityColumn), BlogId = c.Column<int>().Annotation("SqlServer:ValueGenerationStrategy", SqlServerIdentityStrategy.IdentityColumn),
Name = c.Column<string>(isNullable: true), Name = c.Column<string>(nullable: true),
}) })
.PrimaryKey("PK_Blog", t => t.BlogId); .PrimaryKey("PK_Blog", t => t.BlogId);
} }