Redo initial migration

This commit is contained in:
2025-11-01 19:59:20 +09:00
parent a9fd99bab8
commit 3c3510a8f9
3 changed files with 11 additions and 18 deletions

View File

@ -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");