how to extend a model
So basically i have a few models but the model is been reused but i want to manipulate it to add some more values
model Product {
id string @id @default(cuid())
name String
category Categories
}
model Categories {
id string @id @default(cuid())
name String
}
model SavedProduct{
id string @id @default(cuid())
product Product[]
}product [
{
Id: 1233
name: best bags
category:{}
quality: 67 //new added data
Bid: $68 //new added data
},
{},
...
]