@bash-app/bash-common 1.4.0 → 1.5.0
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 +8 -7
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -485,13 +485,14 @@ enum Privacy {
|
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
model TargetAudience {
|
|
488
|
-
id
|
|
489
|
-
bashEventId
|
|
490
|
-
bashEvent
|
|
491
|
-
ageRange
|
|
492
|
-
gender
|
|
493
|
-
occupation
|
|
494
|
-
education
|
|
488
|
+
id String @id @default(cuid())
|
|
489
|
+
bashEventId String @unique
|
|
490
|
+
bashEvent BashEvent @relation(fields: [bashEventId], references: [id], onDelete: Cascade)
|
|
491
|
+
ageRange AgeRange @default(NoPreference)
|
|
492
|
+
gender Gender @default(NoPreference)
|
|
493
|
+
occupation Occupation @default(NoPreference)
|
|
494
|
+
education Education @default(NoPreference)
|
|
495
|
+
showOnDetailPage Boolean @default(true)
|
|
495
496
|
}
|
|
496
497
|
|
|
497
498
|
enum AgeRange {
|