From d7ad75b10b2486d7e8b839c4dd34d069362e2dd3 Mon Sep 17 00:00:00 2001 From: Elliott <85990359+Ell1ott@users.noreply.github.com> Date: Sun, 24 Mar 2024 15:45:20 +0100 Subject: [PATCH] Add isPublic field to assignment model --- prisma/schema.prisma | 1 + 1 file changed, 1 insertion(+) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 47c0ce5..fe50c29 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -75,6 +75,7 @@ model assignment { assignment_answers assignment_answer[] data Bytes? updated_at DateTime? + isPublic Boolean @default(false) } model assignment_answer {