Strategy rename
This commit is contained in:
parent
062d072712
commit
6afe357271
|
|
@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
|
||||||
migrationBuilder.CreateTable("Blog",
|
migrationBuilder.CreateTable("Blog",
|
||||||
c => new
|
c => new
|
||||||
{
|
{
|
||||||
BlogId = c.Column<int>().Annotation("SqlServer:ValueGenerationStrategy", SqlServerIdentityStrategy.IdentityColumn),
|
BlogId = c.Column<int>().Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn),
|
||||||
Name = c.Column<string>(nullable: true),
|
Name = c.Column<string>(nullable: true),
|
||||||
})
|
})
|
||||||
.PrimaryKey("PK_Blog", t => t.BlogId);
|
.PrimaryKey("PK_Blog", t => t.BlogId);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue