@bash-app/bash-common 29.19.17 → 29.19.18
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 -5
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1005,7 +1005,7 @@ model Service {
|
|
|
1005
1005
|
// hoursOfOperation Json? @default("{}")
|
|
1006
1006
|
|
|
1007
1007
|
stripeAccountId String?
|
|
1008
|
-
stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete:
|
|
1008
|
+
stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete: Restrict)
|
|
1009
1009
|
|
|
1010
1010
|
targetAudienceId String? @unique
|
|
1011
1011
|
targetAudience TargetAudience? @relation(fields: [targetAudienceId], references: [id], onDelete: Cascade)
|
|
@@ -1163,10 +1163,10 @@ model Venue {
|
|
|
1163
1163
|
vibe String?
|
|
1164
1164
|
dress String?
|
|
1165
1165
|
|
|
1166
|
-
pricingPlan PricingPlan?
|
|
1167
|
-
percentageRate Float?
|
|
1168
|
-
subscriptionStatus SubscriptionStatus?
|
|
1169
|
-
subscriptionStartDate DateTime?
|
|
1166
|
+
pricingPlan PricingPlan? @default(Percentage)
|
|
1167
|
+
percentageRate Float? @default(0.15)
|
|
1168
|
+
subscriptionStatus SubscriptionStatus?
|
|
1169
|
+
subscriptionStartDate DateTime?
|
|
1170
1170
|
|
|
1171
1171
|
bashEvents BashEvent[]
|
|
1172
1172
|
}
|