@bash-app/bash-common 29.16.0 → 29.16.2
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 +3 -1
- package/src/definitions.ts +1 -0
- package/src/extendedSchemas.ts +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -744,9 +744,11 @@ model Media {
|
|
|
744
744
|
mimetype String?
|
|
745
745
|
bashEventsReferencingMe BashEvent[]
|
|
746
746
|
sponsoredEventsReferencingMe SponsoredEvent[]
|
|
747
|
-
serviceReferencingMe Service[]
|
|
748
747
|
volunteerService VolunteerService? @relation(fields: [volunteerServiceId], references: [id])
|
|
749
748
|
volunteerServiceId String?
|
|
749
|
+
|
|
750
|
+
serviceId String
|
|
751
|
+
service Service @relation(fields: [serviceId], references: [id])
|
|
750
752
|
}
|
|
751
753
|
|
|
752
754
|
enum MediaType {
|
package/src/definitions.ts
CHANGED
package/src/extendedSchemas.ts
CHANGED