migrate db insignia add round
This commit is contained in:
parent
f386a5fea6
commit
d30030141a
3 changed files with 15024 additions and 3 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue