migrate db insignia add round

This commit is contained in:
Kittapath 2023-08-18 12:13:16 +07:00
parent f386a5fea6
commit d30030141a
3 changed files with 15024 additions and 3 deletions

View file

@ -5140,10 +5140,9 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<string>("Amount")
.IsRequired()
b.Property<int>("Amount")
.HasMaxLength(50)
.HasColumnType("varchar(50)");
.HasColumnType("int");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime(6)")
@ -5198,6 +5197,10 @@ namespace BMA.EHR.Infrastructure.Migrations
b.Property<Guid?>("ReliefDocId")
.HasColumnType("char(36)");
b.Property<int>("Round")
.HasColumnType("int")
.HasComment("ราบการยื่นขอ");
b.Property<DateTime>("StartDate")
.HasColumnType("datetime(6)");
@ -5370,6 +5373,11 @@ namespace BMA.EHR.Infrastructure.Migrations
.HasMaxLength(50)
.HasColumnType("varchar(50)");
b.Property<string>("Status")
.IsRequired()
.HasColumnType("longtext")
.HasComment("สถานะตำแหน่งที่ยื่นขอ");
b.HasKey("Id");
b.HasIndex("ProfileId");