efiber-prisma-schema 2.1.1 → 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 +205 -217
- package/dist/prisma/generated/index.js +3 -3
- package/dist/prisma/generated/package.json +1 -1
- package/dist/prisma/generated/schema.prisma +5 -3
- 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 {
|
|
@@ -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
|