added default value for role field in DB

This commit is contained in:
PxlLoewe
2025-06-14 00:11:59 -07:00
parent f344f1681b
commit 2d7ba89766

View File

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