updata user add employmentOffice
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s

This commit is contained in:
Kanjana 2025-04-11 11:28:24 +07:00
parent 70245a2b4f
commit a06d5514fc
5 changed files with 55 additions and 9 deletions

View file

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN "contactName" TEXT,
ADD COLUMN "contactTel" TEXT;

View file

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "User" ALTER COLUMN "firstName" DROP NOT NULL,
ALTER COLUMN "lastName" DROP NOT NULL;

View file

@ -371,11 +371,11 @@ model User {
code String?
namePrefix String?
firstName String
firstName String?
firstNameEN String
middleName String?
middleNameEN String?
lastName String
lastName String?
lastNameEN String
username String
gender String
@ -497,6 +497,9 @@ model User {
remark String?
agencyStatus String?
contactName String?
contactTel String?
}
model UserResponsibleArea {