@valentine-efagene/qshelter-common 2.0.8 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +2 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -27,7 +27,8 @@ model User {
|
|
|
27
27
|
lastName String?
|
|
28
28
|
isActive Boolean @default(true)
|
|
29
29
|
isEmailVerified Boolean @default(false)
|
|
30
|
-
googleId String?
|
|
30
|
+
googleId String?
|
|
31
|
+
avatar String?
|
|
31
32
|
tenantId String?
|
|
32
33
|
tenant Tenant? @relation(fields: [tenantId], references: [id], onDelete: SetNull)
|
|
33
34
|
// Support multiple roles via explicit join table `UserRole`
|