@bash-app/bash-common 29.30.0 → 29.31.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 +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -994,8 +994,8 @@ model Service {
|
|
|
994
994
|
// insurancePolicy String?
|
|
995
995
|
// hoursOfOperation Json? @default("{}")
|
|
996
996
|
|
|
997
|
-
displayGoogleReviewsOnDetailPage Boolean
|
|
998
|
-
displayBashReviewsOnDetailPage Boolean
|
|
997
|
+
displayGoogleReviewsOnDetailPage Boolean @default(true)
|
|
998
|
+
displayBashReviewsOnDetailPage Boolean @default(true)
|
|
999
999
|
|
|
1000
1000
|
stripeAccountId String?
|
|
1001
1001
|
stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete: Restrict)
|