Added contactInfo to item in DB Schema

This commit is contained in:
Leon Meier 2023-05-21 01:53:52 +02:00
parent 37649ec98e
commit b29550f429

View File

@ -40,6 +40,9 @@ model Item {
comment String? 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)? 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 manufacturer String
category itemCategory? @relation(fields: [categoryId], references: [id]) category itemCategory? @relation(fields: [categoryId], references: [id])
@ -95,10 +98,12 @@ model contactInfo {
country String country String
StorageUnit StorageUnit[] StorageUnit StorageUnit[]
Item Item[]
} }
enum contactType { enum contactType {
storageUnit storageUnit
owner
person person
customer customer
company company