feat: add update status flow

This commit is contained in:
Methapon Metanipat 2024-10-10 16:43:09 +07:00
parent 7413b2a8f8
commit 52c97134cb
3 changed files with 35 additions and 9 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "RequestData" ADD COLUMN "flow" JSONB;

View file

@ -1202,6 +1202,8 @@ model RequestData {
quotation Quotation @relation(fields: [quotationId], references: [id])
quotationId String
flow Json?
requestWork RequestWork[]
}