change LeaveTotal to Double
This commit is contained in:
parent
d7be2da281
commit
7ce1b11244
8 changed files with 1085 additions and 24 deletions
|
|
@ -306,8 +306,8 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("สถานะของคำร้อง");
|
||||
|
||||
b.Property<int>("LeaveTotal")
|
||||
.HasColumnType("int");
|
||||
b.Property<double>("LeaveTotal")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<string>("LeaveWrote")
|
||||
.IsRequired()
|
||||
|
|
@ -340,11 +340,11 @@ namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|||
b.Property<bool>("OrdainDayStatus")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<int>("RestDayCurrentTotal")
|
||||
.HasColumnType("int");
|
||||
b.Property<double>("RestDayCurrentTotal")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<int>("RestDayOldTotal")
|
||||
.HasColumnType("int");
|
||||
b.Property<double>("RestDayOldTotal")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<string>("StudyDayCountry")
|
||||
.IsRequired()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue