@bash-app/bash-common 25.2.1 → 25.3.0
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
|
@@ -795,6 +795,7 @@ model User {
|
|
|
795
795
|
createdOn DateTime @default(now())
|
|
796
796
|
stripeCustomerId String? @unique
|
|
797
797
|
stripeAccountId String? @unique
|
|
798
|
+
isSuperUser Boolean @default(false)
|
|
798
799
|
googleCalendarAccess String?
|
|
799
800
|
givenName String?
|
|
800
801
|
familyName String?
|
|
@@ -1445,4 +1446,4 @@ enum ServiceTypes {
|
|
|
1445
1446
|
Sponsors
|
|
1446
1447
|
Venues
|
|
1447
1448
|
Organizations
|
|
1448
|
-
}
|
|
1449
|
+
}
|