Added contactInfo to item in DB Schema
This commit is contained in:
parent
37649ec98e
commit
b29550f429
@ -40,6 +40,9 @@ model Item {
|
||||
comment String?
|
||||
status itemStatus @default(normal) /// TODO: Would it be better to create a separate model for this as well instead of providing several static statuses to choose from(enum)?
|
||||
|
||||
contactInfo contactInfo? @relation(fields: [contactInfoId], references: [id]) ///
|
||||
contactInfoId Int?
|
||||
|
||||
manufacturer String
|
||||
|
||||
category itemCategory? @relation(fields: [categoryId], references: [id])
|
||||
@ -95,10 +98,12 @@ model contactInfo {
|
||||
country String
|
||||
|
||||
StorageUnit StorageUnit[]
|
||||
Item Item[]
|
||||
}
|
||||
|
||||
enum contactType {
|
||||
storageUnit
|
||||
owner
|
||||
person
|
||||
customer
|
||||
company
|
||||
|
Loading…
Reference in New Issue
Block a user