React to aspnet/EntityFramework#2948
This commit is contained in:
parent
8ccfb99624
commit
b95f67733d
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue