Joey
03/01/2021, 7:12 PMProduct
and Category
model which are linked as below;
model Category {
id Int @id
name String
products Product[] @relation(references: [id])
image String?
}
model Product {
id Int @id
name String
price Float
image String
brand String
categories Category[] @relation(references: [id])
currentInventory Int
description String
}