feat: add servings field to Recipe model and implement inventory comparison functionality

This commit is contained in:
Nils-Johan Gynther
2026-04-17 18:48:08 +02:00
parent 8a86b0aebd
commit 8e0aed032c
10 changed files with 260 additions and 20 deletions
+1
View File
@@ -72,6 +72,7 @@ model Recipe {
description String? @db.Text
instructions String? @db.Text
imageUrl String?
servings Int?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt