💩 (user) i dont know what im commited

This commit is contained in:
Rafi Arrafif
2025-07-15 23:50:40 +07:00
parent 8fb1586c6a
commit b98c2c01c6
6 changed files with 56 additions and 36 deletions

View File

@ -201,7 +201,7 @@ model User {
gender UserGender?
phoneCC Int?
phoneNumber Int?
roles UserRoleAssignment[]
assignedRoles UserRoleAssignment[]
bioProfile String? @db.Text
avatar String? @db.Text
commentBackground String? @db.Text
@ -284,7 +284,7 @@ model UserRole {
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
users UserRoleAssignment[]
assignedUser UserRoleAssignment[]
@@map("user_roles")
}