@bash-app/bash-common 30.65.8 → 30.65.9
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 +7 -7
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -767,14 +767,14 @@ model AmountOfGuests {
|
|
|
767
767
|
vendor Vendor?
|
|
768
768
|
sponsor Sponsor?
|
|
769
769
|
|
|
770
|
-
minimum
|
|
771
|
-
ideal
|
|
772
|
-
expected
|
|
773
|
-
showMinimumGuests
|
|
774
|
-
showIdealGuests
|
|
770
|
+
minimum Int? @default(10)
|
|
771
|
+
ideal Int? @default(35)
|
|
772
|
+
expected Int? @default(25)
|
|
773
|
+
showMinimumGuests Boolean @default(true)
|
|
774
|
+
showIdealGuests Boolean @default(true)
|
|
775
775
|
showExpectedGuests Boolean @default(true)
|
|
776
|
-
venueId
|
|
777
|
-
organizationId
|
|
776
|
+
venueId String?
|
|
777
|
+
organizationId String?
|
|
778
778
|
}
|
|
779
779
|
|
|
780
780
|
enum Privacy {
|