@bash-app/bash-common 29.24.0 → 29.25.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 +1 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1360,6 +1360,7 @@ model ServiceRate {
|
|
|
1360
1360
|
rateType ServiceRateType
|
|
1361
1361
|
hourlyRate Int?
|
|
1362
1362
|
dailyRate Int?
|
|
1363
|
+
minimumTimeBlockHours Int?
|
|
1363
1364
|
serviceSpecialRates ServiceSpecialRates?
|
|
1364
1365
|
serviceDailyRates ServiceDailyRates?
|
|
1365
1366
|
serviceRatesAssociation ServiceRatesAssociation?
|
|
@@ -1410,8 +1411,6 @@ model ServiceRatesAssociation {
|
|
|
1410
1411
|
volunteerServiceId String?
|
|
1411
1412
|
volunteerService VolunteerService? @relation(fields: [volunteerServiceId], references: [id], onDelete: Cascade)
|
|
1412
1413
|
|
|
1413
|
-
minimumTimeBlockHours Int
|
|
1414
|
-
|
|
1415
1414
|
serviceGeneralRatesId String?
|
|
1416
1415
|
serviceGeneralRates ServiceRate? @relation(fields: [serviceGeneralRatesId], references: [id], onDelete: Cascade)
|
|
1417
1416
|
|