เพิ่มวุฒิในกรรมการวินัย

This commit is contained in:
Kittapath 2024-01-17 11:43:20 +07:00
parent f60beb9f36
commit 4bc76d3211
6 changed files with 3116 additions and 9 deletions

View file

@ -607,7 +607,6 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<string>("Email")
.IsRequired()
.HasColumnType("longtext")
.HasComment("อีเมล");
@ -641,7 +640,6 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
b.Property<string>("Phone")
.IsRequired()
.HasColumnType("longtext")
.HasComment("เบอร์โทรศัพท์");
@ -655,6 +653,10 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
.HasColumnType("longtext")
.HasComment("คำนำหน้าชื่อ");
b.Property<string>("Qualification")
.HasColumnType("longtext")
.HasComment("คุณวุฒิ");
b.HasKey("Id");
b.ToTable("DisciplineDirectors");