feat: add missing field
This commit is contained in:
parent
21aeacfaf3
commit
7627b51a25
4 changed files with 79 additions and 22 deletions
|
|
@ -335,6 +335,7 @@ model Customer {
|
|||
customerType CustomerType
|
||||
customerName String
|
||||
customerNameEN String
|
||||
taxNo String?
|
||||
|
||||
status Status @default(CREATED)
|
||||
|
||||
|
|
@ -357,7 +358,7 @@ model CustomerBranch {
|
|||
customer Customer @relation(fields: [customerId], references: [id], onDelete: Cascade)
|
||||
customerId String
|
||||
|
||||
taxNo String
|
||||
taxNo String?
|
||||
registerName String
|
||||
registerDate DateTime
|
||||
authorizedCapital String
|
||||
|
|
@ -379,8 +380,13 @@ model CustomerBranch {
|
|||
email String
|
||||
telephoneNo String
|
||||
|
||||
latitude String
|
||||
longitude String
|
||||
employmentOffice String
|
||||
bussinessType String
|
||||
jobPosition String
|
||||
jobDescription String
|
||||
saleEmployee String
|
||||
payDate String
|
||||
wageDate String
|
||||
|
||||
status Status @default(CREATED)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue