From f13ce1ce989c42caecc7f9163fcddb205d2381a0 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Sat, 14 Jun 2025 00:15:13 -0700 Subject: [PATCH] finally --- 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 fc8d615a..9d94368a 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(null) + reportedUserRole String? @default("KP") reportedUserId String timestamp DateTime @default(now()) reviewerComment String?