feat: update request data table
This commit is contained in:
parent
82fd331205
commit
e77aa8faf4
4 changed files with 23 additions and 0 deletions
|
|
@ -1360,6 +1360,12 @@ model Payment {
|
|||
createdByUserId String?
|
||||
}
|
||||
|
||||
enum RequestDataStatus {
|
||||
Pending
|
||||
InProgress
|
||||
Completed
|
||||
}
|
||||
|
||||
model RequestData {
|
||||
id String @id @default(cuid())
|
||||
|
||||
|
|
@ -1369,6 +1375,8 @@ model RequestData {
|
|||
quotation Quotation @relation(fields: [quotationId], references: [id], onDelete: Cascade)
|
||||
quotationId String
|
||||
|
||||
requestDataStatus RequestDataStatus @default(Pending)
|
||||
|
||||
flow Json?
|
||||
|
||||
requestWork RequestWork[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue