feat: add max worker field
This commit is contained in:
parent
ee113b3820
commit
b4fb53cdcf
3 changed files with 8 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "Quotation" ADD COLUMN "workerMax" INTEGER;
|
||||
|
|
@ -1123,6 +1123,8 @@ model Quotation {
|
|||
|
||||
worker QuotationWorker[]
|
||||
|
||||
workerMax Int?
|
||||
|
||||
urgent Boolean @default(false)
|
||||
|
||||
productServiceList QuotationProductServiceList[]
|
||||
|
|
|
|||
|
|
@ -60,6 +60,8 @@ type QuotationCreate = {
|
|||
}
|
||||
)[];
|
||||
|
||||
workerMax?: number | null;
|
||||
|
||||
customerBranchId: string;
|
||||
|
||||
urgent?: boolean;
|
||||
|
|
@ -113,6 +115,8 @@ type QuotationUpdate = {
|
|||
}
|
||||
)[];
|
||||
|
||||
workerMax?: number | null;
|
||||
|
||||
customerBranchId?: string;
|
||||
|
||||
urgent?: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue