feat(user): add ownedProducts relation to User model

This commit is contained in:
Nils-Johan Gynther
2026-04-17 20:06:44 +02:00
parent 06438b77e5
commit 5bc2b60176
+1
View File
@@ -18,6 +18,7 @@ model User {
userProducts UserProduct[]
ownedRecipes Recipe[] @relation("RecipeOwner")
sharedRecipes RecipeShare[]
ownedProducts Product[]
}
model Product {