React to aspnet/EntityFramework#2757
This commit is contained in:
parent
80e9d35630
commit
c0255f4188
|
|
@ -63,8 +63,8 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
|
|||
migrationBuilder.CreateTable("Blog",
|
||||
c => new
|
||||
{
|
||||
BlogId = c.Column("int").Annotation("SqlServer:ValueGeneration", "Identity"),
|
||||
Name = c.Column("nvarchar(max)", nullable: true),
|
||||
BlogId = c.Column<string>("int").Annotation("SqlServer:ValueGeneration", "Identity"),
|
||||
Name = c.Column<string>("nvarchar(max)", nullable: true),
|
||||
})
|
||||
.PrimaryKey("PK_Blog", t => t.BlogId);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue