efiber-prisma-schema 1.11.6 → 1.11.7
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
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1346,7 +1346,7 @@ model Cable {
|
|
|
1346
1346
|
cableAttributes CableAtttributes[]
|
|
1347
1347
|
PboFatAttributes PboFatAttributes[]
|
|
1348
1348
|
qrCodeTag qrCodeTag[]
|
|
1349
|
-
|
|
1349
|
+
cluster Cluster? @relation(fields: [clusterId], references: [id])
|
|
1350
1350
|
clusterId String?
|
|
1351
1351
|
}
|
|
1352
1352
|
|
|
@@ -1380,7 +1380,7 @@ model CableTemplate {
|
|
|
1380
1380
|
cableAttributes CableAtttributes[]
|
|
1381
1381
|
qrCodeTemplate qrCodeTemplate[]
|
|
1382
1382
|
Cable Cable[]
|
|
1383
|
-
|
|
1383
|
+
cluster Cluster? @relation(fields: [clusterId], references: [id])
|
|
1384
1384
|
clusterId String?
|
|
1385
1385
|
}
|
|
1386
1386
|
|
|
@@ -1451,7 +1451,7 @@ model PboFatTemplate {
|
|
|
1451
1451
|
//TODO: Add the fields for input/output cable, previous/next equipment, CO and project phase
|
|
1452
1452
|
qrCodeTemplate qrCodeTemplate[]
|
|
1453
1453
|
PboFat PboFat[]
|
|
1454
|
-
|
|
1454
|
+
cluster Cluster? @relation(fields: [clusterId], references: [id])
|
|
1455
1455
|
clusterId String?
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
@@ -1500,7 +1500,7 @@ model PboFat {
|
|
|
1500
1500
|
pboFatAttributes PboFatAttributes[]
|
|
1501
1501
|
// qrCode qrCode[]
|
|
1502
1502
|
qrCodeTag qrCodeTag[]
|
|
1503
|
-
|
|
1503
|
+
cluster Cluster? @relation(fields: [clusterId], references: [id])
|
|
1504
1504
|
clusterId String?
|
|
1505
1505
|
|
|
1506
1506
|
dependencies PreviousEquipment[]
|
|
Binary file
|