@bash-app/bash-common 1.5.0 → 1.7.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 +9 -5
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -240,6 +240,8 @@ model BashEvent {
|
|
|
240
240
|
bashNotificationsReferencingMe BashNotification[]
|
|
241
241
|
checkouts Checkout[]
|
|
242
242
|
eventTasks EventTask[]
|
|
243
|
+
videoLink String?
|
|
244
|
+
subtitle String?
|
|
243
245
|
}
|
|
244
246
|
|
|
245
247
|
model Checkout {
|
|
@@ -471,11 +473,13 @@ model CustomBashEventType {
|
|
|
471
473
|
}
|
|
472
474
|
|
|
473
475
|
model AmountOfGuests {
|
|
474
|
-
id
|
|
475
|
-
bashEventId
|
|
476
|
-
bashEvent
|
|
477
|
-
minimum
|
|
478
|
-
ideal
|
|
476
|
+
id String @id @default(cuid())
|
|
477
|
+
bashEventId String @unique
|
|
478
|
+
bashEvent BashEvent @relation(fields: [bashEventId], references: [id], onDelete: Cascade)
|
|
479
|
+
minimum Int? @default(10)
|
|
480
|
+
ideal Int? @default(35)
|
|
481
|
+
showMinimumGuests Boolean @default(true)
|
|
482
|
+
showIdealGuests Boolean @default(true)
|
|
479
483
|
}
|
|
480
484
|
|
|
481
485
|
enum Privacy {
|