Redo initial migration
This commit is contained in:
@ -99,9 +99,6 @@ namespace Hcs.WebApp.Data.Hcs.Migrations
|
||||
b.Property<bool>("IsCommon")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<string>("LastSyncError")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int?>("LastSyncOperationId")
|
||||
.HasColumnType("int");
|
||||
|
||||
@ -136,13 +133,13 @@ namespace Hcs.WebApp.Data.Hcs.Migrations
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<Guid>("RegistryId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("Xml")
|
||||
b.Property<string>("Json")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<Guid>("RegistryId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("RegistryId");
|
||||
|
||||
Reference in New Issue
Block a user