adding new filed to user

This commit is contained in:
José Salazar
2025-12-26 15:18:56 -05:00
parent 5136b1d6b5
commit 9acd01237e
3 changed files with 11 additions and 3 deletions

View File

@@ -8,7 +8,8 @@ type User @table(name: "users") {
email: String!
fullName: String!
role: UserBaseRole!
userRole: String
userRole: String
photoUrl: String
createdDate: Timestamp @default(expr: "request.time")
updatedDate: Timestamp @default(expr: "request.time")
createdBy: String @default(expr: "auth.uid")