removed null value from Report role

This commit is contained in:
PxlLoewe
2025-06-14 00:26:34 -07:00
parent f13ce1ce98
commit 247f1dba61

View File

@@ -2,7 +2,7 @@ model Report {
id Int @id @default(autoincrement()) id Int @id @default(autoincrement())
text String text String
senderUserId String senderUserId String
reportedUserRole String? @default("KP") reportedUserRole String @default("KP")
reportedUserId String reportedUserId String
timestamp DateTime @default(now()) timestamp DateTime @default(now())
reviewerComment String? reviewerComment String?