migrate + ปรับสอบแข่งขัน (#6)

Co-authored-by: harid <harid_pr61@live.rmutl.com>
This commit is contained in:
Harid Promsri 2025-10-16 17:35:59 +07:00 committed by GitHub
parent 9332086ee9
commit 6e9fb4b368
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1839 additions and 110 deletions

View file

@ -62,10 +62,10 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<DateTime>("ApplyDate")
b.Property<DateTime?>("ApplyDate")
.HasColumnType("datetime(6)");
b.Property<DateTime>("CitizenCardExpireDate")
b.Property<DateTime?>("CitizenCardExpireDate")
.HasColumnType("datetime(6)");
b.Property<string>("CitizenCardIssuer")
@ -101,7 +101,7 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasColumnOrder(101)
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<DateTime>("DateOfBirth")
b.Property<DateTime?>("DateOfBirth")
.HasColumnType("datetime(6)");
b.Property<string>("ExamId")
@ -157,7 +157,7 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasMaxLength(20)
.HasColumnType("varchar(20)");
b.Property<DateTime>("ModifiedDate")
b.Property<DateTime?>("ModifiedDate")
.HasColumnType("datetime(6)");
b.Property<string>("National")
@ -512,7 +512,7 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<DateTime>("BachelorDate")
b.Property<DateTime?>("BachelorDate")
.HasColumnType("datetime(6)");
b.Property<DateTime>("CreatedAt")