add notification expireDate passport, visa
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 6s

This commit is contained in:
Kanjana 2025-05-14 09:28:57 +07:00
parent 0affb5337f
commit 897ef335b4
4 changed files with 149 additions and 1 deletions

View file

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "QuotationWorker" ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;

View file

@ -1410,6 +1410,9 @@ model QuotationWorker {
employeeId String
quotation Quotation @relation(fields: [quotationId], references: [id], onDelete: Cascade)
quotationId String
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
}
model QuotationProductServiceList {