From 247f1dba61b35fa138781ddd3d44200f1098d207 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Sat, 14 Jun 2025 00:26:34 -0700 Subject: [PATCH] removed null value from Report role --- packages/database/prisma/schema/report.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/database/prisma/schema/report.prisma b/packages/database/prisma/schema/report.prisma index 9d94368a..b184daab 100644 --- a/packages/database/prisma/schema/report.prisma +++ b/packages/database/prisma/schema/report.prisma @@ -2,7 +2,7 @@ model Report { id Int @id @default(autoincrement()) text String senderUserId String - reportedUserRole String? @default("KP") + reportedUserRole String @default("KP") reportedUserId String timestamp DateTime @default(now()) reviewerComment String?