@bash-app/bash-common 30.20.0 → 30.21.1
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 -3
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -7,8 +7,8 @@ generator client {
|
|
|
7
7
|
|
|
8
8
|
datasource db {
|
|
9
9
|
provider = "postgresql"
|
|
10
|
-
url = env("POSTGRES_PRISMA_URL")
|
|
11
|
-
directUrl = env("POSTGRES_URL_NON_POOLING")
|
|
10
|
+
url = env("POSTGRES_PRISMA_URL")
|
|
11
|
+
directUrl = env("POSTGRES_URL_NON_POOLING")
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
model Club {
|
|
@@ -1242,7 +1242,6 @@ model Service {
|
|
|
1242
1242
|
communityInvolvement String?
|
|
1243
1243
|
emergencyContact String?
|
|
1244
1244
|
contactDetails String?
|
|
1245
|
-
// rates Rate[] @relation("MultipleRates")
|
|
1246
1245
|
cancellationPolicy ServiceCancellationPolicy? @default(None)
|
|
1247
1246
|
// refundPolicy String?
|
|
1248
1247
|
// insurancePolicy String?
|