itemStatus is now optional in Prisma Schema
This commit is contained in:
parent
9a05743cb3
commit
b5314cb552
@ -42,8 +42,8 @@ model Item {
|
||||
|
||||
manufacturer String
|
||||
|
||||
category itemCategory @relation(fields: [categoryId], references: [id])
|
||||
categoryId Int
|
||||
category itemCategory? @relation(fields: [categoryId], references: [id])
|
||||
categoryId Int?
|
||||
|
||||
items Item[] @relation("items") /// Item beinhaltet..
|
||||
baseItem Item[] @relation("items") /// Item zugehörig zu.
|
||||
|
Loading…
Reference in New Issue
Block a user