@bash-app/bash-common 29.16.2 → 29.16.4
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 +5 -3
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -744,11 +744,9 @@ model Media {
|
|
|
744
744
|
mimetype String?
|
|
745
745
|
bashEventsReferencingMe BashEvent[]
|
|
746
746
|
sponsoredEventsReferencingMe SponsoredEvent[]
|
|
747
|
+
serviceReferencingMe Service[]
|
|
747
748
|
volunteerService VolunteerService? @relation(fields: [volunteerServiceId], references: [id])
|
|
748
749
|
volunteerServiceId String?
|
|
749
|
-
|
|
750
|
-
serviceId String
|
|
751
|
-
service Service @relation(fields: [serviceId], references: [id])
|
|
752
750
|
}
|
|
753
751
|
|
|
754
752
|
enum MediaType {
|
|
@@ -994,6 +992,10 @@ model Service {
|
|
|
994
992
|
media Media[]
|
|
995
993
|
serviceLinks ServiceLink[]
|
|
996
994
|
|
|
995
|
+
pocName String?
|
|
996
|
+
pocPhoneNumber String?
|
|
997
|
+
pocBusinessEmail String?
|
|
998
|
+
|
|
997
999
|
eventService EventService?
|
|
998
1000
|
entertainmentService EntertainmentService?
|
|
999
1001
|
vendor Vendor?
|