@bash-app/bash-common 29.14.4 → 29.14.5
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 +9 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -238,6 +238,9 @@ model BashEvent {
|
|
|
238
238
|
coordinates Coordinates[] // A BashEvent can have multiple sets of coordinates
|
|
239
239
|
// stripeAccount StripeAccount[]
|
|
240
240
|
rate Rate[]
|
|
241
|
+
venueId String? // Nullable, meaning it's optional
|
|
242
|
+
venue Venue? @relation(fields: [venueId], references: [id])
|
|
243
|
+
|
|
241
244
|
}
|
|
242
245
|
|
|
243
246
|
model Coordinates {
|
|
@@ -1100,6 +1103,12 @@ model Venue {
|
|
|
1100
1103
|
capacity Int?
|
|
1101
1104
|
trademark Boolean?
|
|
1102
1105
|
manager Boolean?
|
|
1106
|
+
allowed String?
|
|
1107
|
+
notAllowed String?
|
|
1108
|
+
vibe String?
|
|
1109
|
+
dress String?
|
|
1110
|
+
|
|
1111
|
+
bashEvents BashEvent[]
|
|
1103
1112
|
}
|
|
1104
1113
|
|
|
1105
1114
|
model Organization {
|