ประวัติการขยายเพิ่มเก็บค่าจำนวนวันขยาย

This commit is contained in:
Kittapath 2023-12-07 23:43:49 +07:00
parent 0b4ea7c9ce
commit 84e656b0c8
7 changed files with 11514 additions and 0 deletions

View file

@ -715,6 +715,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("datetime(6)")
.HasComment("วันที่เริ่ม");
b.Property<int?>("DaysExtend")
.HasColumnType("int")
.HasComment("จำนวนวันที่การขยาย");
b.Property<Guid>("DisciplineDisciplinaryId")
.HasColumnType("char(36)");
@ -1617,6 +1621,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("datetime(6)")
.HasComment("วันที่เริ่ม");
b.Property<int?>("DaysExtend")
.HasColumnType("int")
.HasComment("จำนวนวันที่การขยาย");
b.Property<Guid>("DisciplineInvestigateId")
.HasColumnType("char(36)");