@bash-app/bash-common 29.19.33 → 29.19.35
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 +4 -4
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1332,10 +1332,10 @@ enum ServiceRateType {
|
|
|
1332
1332
|
//can optionally be associated with a package
|
|
1333
1333
|
model ServiceAddon {
|
|
1334
1334
|
id String @id @default(cuid())
|
|
1335
|
-
name String
|
|
1336
|
-
description String
|
|
1335
|
+
name String?
|
|
1336
|
+
description String?
|
|
1337
1337
|
price Int?
|
|
1338
|
-
quantity Int
|
|
1338
|
+
quantity Int?
|
|
1339
1339
|
|
|
1340
1340
|
servicePackage ServicePackage? @relation(fields: [servicePackageId], references: [id], onDelete: Cascade)
|
|
1341
1341
|
servicePackageId String?
|
|
@@ -1358,7 +1358,7 @@ model ServicePackage {
|
|
|
1358
1358
|
|
|
1359
1359
|
model ServiceRate {
|
|
1360
1360
|
id String @id @default(cuid())
|
|
1361
|
-
rateType ServiceRateType
|
|
1361
|
+
rateType ServiceRateType?
|
|
1362
1362
|
hourlyRate Int?
|
|
1363
1363
|
dailyRate Int?
|
|
1364
1364
|
serviceSpecialRates ServiceSpecialRates?
|