feat: update field
This commit is contained in:
parent
0699835129
commit
ce21193741
1 changed files with 5 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ model Branch {
|
|||
productRegistration Product[]
|
||||
serviceRegistration Service[]
|
||||
customerRegistration Customer[]
|
||||
ProductGroup ProductGroup[]
|
||||
productGroup ProductGroup[]
|
||||
}
|
||||
|
||||
model BranchBank {
|
||||
|
|
@ -692,6 +692,8 @@ model Product {
|
|||
status Status @default(CREATED)
|
||||
statusOrder Int @default(0)
|
||||
|
||||
shared Boolean @default(false)
|
||||
|
||||
remark String?
|
||||
|
||||
productGroup ProductGroup? @relation(fields: [productGroupId], references: [id], onDelete: SetNull)
|
||||
|
|
@ -722,6 +724,8 @@ model Service {
|
|||
status Status @default(CREATED)
|
||||
statusOrder Int @default(0)
|
||||
|
||||
shared Boolean @default(false)
|
||||
|
||||
work Work[]
|
||||
quotationService QuotationService[]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue