@bash-app/bash-common 30.87.0 → 30.89.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 +3 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -761,6 +761,8 @@ model User {
|
|
|
761
761
|
dob DateTime?
|
|
762
762
|
gender Gender?
|
|
763
763
|
sex Sex?
|
|
764
|
+
organization String?
|
|
765
|
+
jobTitle String?
|
|
764
766
|
roles UserRole[] @default([User])
|
|
765
767
|
aboutMe String?
|
|
766
768
|
levelBadge String?
|
|
@@ -1370,6 +1372,7 @@ model EntertainmentService {
|
|
|
1370
1372
|
secondaryVenueTypes String[] @default([])
|
|
1371
1373
|
openToCollaboration Boolean @default(false)
|
|
1372
1374
|
collaborationNote String?
|
|
1375
|
+
lookingForArtists String?
|
|
1373
1376
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
1374
1377
|
serviceRange ServiceRange? @relation(fields: [serviceRangeId], references: [id])
|
|
1375
1378
|
service Service?
|