efiber-prisma-schema 1.2.5 → 1.2.6
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
|
@@ -1174,8 +1174,8 @@ model PboFatTemplate {
|
|
|
1174
1174
|
status String @default("active")
|
|
1175
1175
|
terminalAccess Boolean @default(false)
|
|
1176
1176
|
photos Json? //Upload files for photos
|
|
1177
|
-
zone
|
|
1178
|
-
geometry
|
|
1177
|
+
zone Json? //Color code for zone
|
|
1178
|
+
geometry Json? //Icon for the PBO FAT
|
|
1179
1179
|
|
|
1180
1180
|
createdAt DateTime @default(now())
|
|
1181
1181
|
updatedAt DateTime @updatedAt
|
|
@@ -1202,8 +1202,8 @@ model PboFat {
|
|
|
1202
1202
|
status String @default("active")
|
|
1203
1203
|
terminalAccess Boolean @default(false)
|
|
1204
1204
|
photos Json? //Upload files for photos
|
|
1205
|
-
zone
|
|
1206
|
-
geometry
|
|
1205
|
+
zone Json? //Color code for zone
|
|
1206
|
+
geometry Json? //Icon for the PBO FAT
|
|
1207
1207
|
|
|
1208
1208
|
createdAt DateTime @default(now())
|
|
1209
1209
|
updatedAt DateTime @updatedAt
|