@bash-app/bash-common 30.107.0 → 30.108.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 +1 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -346,6 +346,7 @@ model BashEvent {
|
|
|
346
346
|
externalPriceMax Int? // Maximum ticket price in cents (for imported events)
|
|
347
347
|
externalPriceSummary String? // Human-readable price summary e.g., "$50 - $150" or "$75"
|
|
348
348
|
customTermsAndConditions String?
|
|
349
|
+
itinerary Json? // Array of { id: string, title: string, startTime: string, endTime: string, description?: string }
|
|
349
350
|
associatedBashesReferencingMe AssociatedBash[]
|
|
350
351
|
comments BashComment[]
|
|
351
352
|
amountOfGuests AmountOfGuests? @relation(fields: [amountOfGuestsId], references: [id], onDelete: Cascade)
|