From c0f72a21dd57064f9056b21e6d5ed8dcfd3be4b7 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Mon, 10 Mar 2025 20:44:32 +0800 Subject: [PATCH] feat(prisma): add `solution` field to `Problem` model --- prisma/schema.prisma | 1 + 1 file changed, 1 insertion(+) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index edead0c..ed995b8 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -32,6 +32,7 @@ model Problem { id Int @id @default(autoincrement()) title String description String + solution String difficulty Difficulty @default(EASY) published Boolean @default(false) authorId Int