@bash-app/bash-common 29.15.6 → 29.15.7
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 +6 -6
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1028,7 +1028,7 @@ model EventService {
|
|
|
1028
1028
|
goodsOrServices String[]
|
|
1029
1029
|
menuItems String?
|
|
1030
1030
|
venueTypes String[]
|
|
1031
|
-
secondaryVenueTypes String[]
|
|
1031
|
+
secondaryVenueTypes String[] @default([])
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
1034
|
model EntertainmentService {
|
|
@@ -1045,7 +1045,7 @@ model EntertainmentService {
|
|
|
1045
1045
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
1046
1046
|
goodsOrServices String[]
|
|
1047
1047
|
venueTypes String[]
|
|
1048
|
-
secondaryVenueTypes String[]
|
|
1048
|
+
secondaryVenueTypes String[] @default([])
|
|
1049
1049
|
}
|
|
1050
1050
|
|
|
1051
1051
|
model Vendor {
|
|
@@ -1060,7 +1060,7 @@ model Vendor {
|
|
|
1060
1060
|
goodsOrServices String[]
|
|
1061
1061
|
menuItems String?
|
|
1062
1062
|
venueTypes String[]
|
|
1063
|
-
secondaryVenueTypes String[]
|
|
1063
|
+
secondaryVenueTypes String[] @default([])
|
|
1064
1064
|
}
|
|
1065
1065
|
|
|
1066
1066
|
model Exhibitor {
|
|
@@ -1074,7 +1074,7 @@ model Exhibitor {
|
|
|
1074
1074
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
1075
1075
|
goodsOrServices String[]
|
|
1076
1076
|
venueTypes String[]
|
|
1077
|
-
secondaryVenueTypes String[]
|
|
1077
|
+
secondaryVenueTypes String[] @default([])
|
|
1078
1078
|
}
|
|
1079
1079
|
|
|
1080
1080
|
model Sponsor {
|
|
@@ -1101,7 +1101,7 @@ model Venue {
|
|
|
1101
1101
|
menuItems String?
|
|
1102
1102
|
features String[]
|
|
1103
1103
|
venueTypes String[]
|
|
1104
|
-
secondaryVenueTypes String[]
|
|
1104
|
+
secondaryVenueTypes String[] @default([])
|
|
1105
1105
|
pitch String?
|
|
1106
1106
|
capacity Int?
|
|
1107
1107
|
trademark Boolean?
|
|
@@ -1121,7 +1121,7 @@ model Organization {
|
|
|
1121
1121
|
organizationType OrganizationType[]
|
|
1122
1122
|
goodsOrServices String[]
|
|
1123
1123
|
venueTypes String[]
|
|
1124
|
-
secondaryVenueTypes String[]
|
|
1124
|
+
secondaryVenueTypes String[] @default([])
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
1127
|
enum EventServiceType {
|