From 3dc63c0641d9086b1e594224dced9cbb323c14b6 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Fri, 10 Apr 2026 20:00:15 +0200 Subject: [PATCH] Update instructions field in Recipe model to use Text type for better storage of longer content --- backend/prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/prisma/schema.prisma b/backend/prisma/schema.prisma index 316a7ec3..cb8bf622 100644 --- a/backend/prisma/schema.prisma +++ b/backend/prisma/schema.prisma @@ -63,7 +63,7 @@ model Recipe { id Int @id @default(autoincrement()) name String description String? - instructions String? + instructions String? @db.Text createdAt DateTime @default(now()) updatedAt DateTime @updatedAt