efiber-prisma-schema 1.2.9 → 1.2.10
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 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1115,6 +1115,7 @@ model Cable {
|
|
|
1115
1115
|
|
|
1116
1116
|
status String @default("active")
|
|
1117
1117
|
name String?
|
|
1118
|
+
terminalAccess Boolean @default(false)
|
|
1118
1119
|
photos Json? //Upload files for photos
|
|
1119
1120
|
zone Json? //Color code for zone
|
|
1120
1121
|
geometry Json? //Icon for the cable
|
|
@@ -1144,6 +1145,7 @@ model CableTemplate {
|
|
|
1144
1145
|
|
|
1145
1146
|
status String @default("active")
|
|
1146
1147
|
name String?
|
|
1148
|
+
terminalAccess Boolean @default(false)
|
|
1147
1149
|
photos Json? //Upload files for photos
|
|
1148
1150
|
zone Json? //Color code for zone
|
|
1149
1151
|
geometry Json? //Icon for the cable
|