This commit is contained in:
mikary 2015-07-31 12:38:57 -07:00
parent 80e9d35630
commit c0255f4188
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
migrationBuilder.CreateTable("Blog", migrationBuilder.CreateTable("Blog",
c => new c => new
{ {
BlogId = c.Column("int").Annotation("SqlServer:ValueGeneration", "Identity"), BlogId = c.Column<string>("int").Annotation("SqlServer:ValueGeneration", "Identity"),
Name = c.Column("nvarchar(max)", nullable: true), Name = c.Column<string>("nvarchar(max)", nullable: true),
}) })
.PrimaryKey("PK_Blog", t => t.BlogId); .PrimaryKey("PK_Blog", t => t.BlogId);
} }