efiber-prisma-schema 1.6.1 → 1.6.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/package.json +1 -1
- package/prisma/schema.prisma +16 -8
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -443,6 +443,7 @@ model Project {
|
|
|
443
443
|
FDTSRO FDTSRO[]
|
|
444
444
|
SFU SFU[]
|
|
445
445
|
Building Building[]
|
|
446
|
+
SpliceClosure SpliceClosure[]
|
|
446
447
|
}
|
|
447
448
|
|
|
448
449
|
model projectPhaseLog {
|
|
@@ -1371,6 +1372,12 @@ model SpliceClosure {
|
|
|
1371
1372
|
networkElement NetworkElement @relation(fields: [networkElementId], references: [id])
|
|
1372
1373
|
networkElementId String
|
|
1373
1374
|
|
|
1375
|
+
project Project? @relation(fields: [projectId], references: [id])
|
|
1376
|
+
projectId String?
|
|
1377
|
+
|
|
1378
|
+
cluster Cluster? @relation(fields: [clusterId], references: [id])
|
|
1379
|
+
clusterId String?
|
|
1380
|
+
|
|
1374
1381
|
spliceClosureAttributes SpliceClosureAttributes[]
|
|
1375
1382
|
}
|
|
1376
1383
|
|
|
@@ -1624,14 +1631,15 @@ model Cluster {
|
|
|
1624
1631
|
centralOffice CentralOffice? @relation(fields: [centralOfficeId], references: [id])
|
|
1625
1632
|
centralOfficeId String?
|
|
1626
1633
|
|
|
1627
|
-
users
|
|
1628
|
-
ZoneNro
|
|
1629
|
-
Pole
|
|
1630
|
-
Manhole
|
|
1631
|
-
Loop
|
|
1632
|
-
FDTSRO
|
|
1633
|
-
SFU
|
|
1634
|
-
Building
|
|
1634
|
+
users User[]
|
|
1635
|
+
ZoneNro ZoneNro[]
|
|
1636
|
+
Pole Pole[]
|
|
1637
|
+
Manhole Manhole[]
|
|
1638
|
+
Loop Loop[]
|
|
1639
|
+
FDTSRO FDTSRO[]
|
|
1640
|
+
SFU SFU[]
|
|
1641
|
+
Building Building[]
|
|
1642
|
+
SpliceClosure SpliceClosure[]
|
|
1635
1643
|
}
|
|
1636
1644
|
|
|
1637
1645
|
model qrCode {
|