efiber-prisma-schema 2.1.0 → 2.1.2
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/dist/prisma/generated/edge.js +3 -3
- package/dist/prisma/generated/index.d.ts +265 -283
- package/dist/prisma/generated/index.js +3 -3
- package/dist/prisma/generated/package.json +1 -1
- package/dist/prisma/generated/schema.prisma +6 -4
- package/dist/prisma/generated/wasm.js +3 -3
- package/package.json +1 -1
|
@@ -905,6 +905,8 @@ model WorkOrder {
|
|
|
905
905
|
buildingId String?
|
|
906
906
|
WorkOrderPauses WorkOrderPauses[]
|
|
907
907
|
WorkOrderComments WorkOrderComments[]
|
|
908
|
+
|
|
909
|
+
@@unique([mainId, projectId])
|
|
908
910
|
}
|
|
909
911
|
|
|
910
912
|
model WorkOrderChannel {
|
|
@@ -1680,7 +1682,7 @@ model Conduit {
|
|
|
1680
1682
|
address String? //Address of the conduit
|
|
1681
1683
|
deploymentPhase String? //Deployment phase of the conduit
|
|
1682
1684
|
trenchConfiguration String? //Trench configuration for the conduit
|
|
1683
|
-
trenchDepth
|
|
1685
|
+
trenchDepth String? //Trench depth for the conduit
|
|
1684
1686
|
backfillMaterial String? //Backfill material for the conduit
|
|
1685
1687
|
reinforcementMaterial String? //Reinforcement material for the conduit
|
|
1686
1688
|
specialCharacteristics String? //Special characteristics of the conduit
|
|
@@ -2220,9 +2222,9 @@ model Pole {
|
|
|
2220
2222
|
|
|
2221
2223
|
address String? //Address of the pole
|
|
2222
2224
|
material String? //Material of the pole
|
|
2223
|
-
height
|
|
2224
|
-
topDiameter
|
|
2225
|
-
bottomDiameter
|
|
2225
|
+
height String? //Height of the pole in meters
|
|
2226
|
+
topDiameter String? //Top diameter of the pole in meters
|
|
2227
|
+
bottomDiameter String? //Bottom diameter of the pole in meters
|
|
2226
2228
|
downGuy Boolean @default(false) //Does the pole have a down guy?
|
|
2227
2229
|
brand String? //Brand of the pole
|
|
2228
2230
|
brandDescription String? //Description of the brand
|