@bash-app/bash-common 27.5.4 → 27.5.5
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 +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1202,8 +1202,8 @@ model Sponsor {
|
|
|
1202
1202
|
|
|
1203
1203
|
model Venue {
|
|
1204
1204
|
id String @id @default(cuid())
|
|
1205
|
-
creatorId String
|
|
1206
|
-
creator User @relation(fields: [creatorId], references: [id], onDelete: Cascade)
|
|
1205
|
+
creatorId String?
|
|
1206
|
+
creator User? @relation(fields: [creatorId], references: [id], onDelete: Cascade)
|
|
1207
1207
|
service Service? @relation(fields: [serviceId], references: [id], onDelete: Cascade)
|
|
1208
1208
|
serviceId String?
|
|
1209
1209
|
serviceConnectionId String?
|