efiber-prisma-schema 1.8.1 → 1.8.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 +8 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -742,6 +742,10 @@ model WorkOrder {
|
|
|
742
742
|
pboFatAttributes PboFatAttributes[]
|
|
743
743
|
PboFat PboFat? @relation(fields: [pboFatId], references: [id])
|
|
744
744
|
pboFatId String?
|
|
745
|
+
SFU SFU? @relation(fields: [sFUId], references: [id])
|
|
746
|
+
sFUId String?
|
|
747
|
+
Building Building? @relation(fields: [buildingId], references: [id])
|
|
748
|
+
buildingId String?
|
|
745
749
|
}
|
|
746
750
|
|
|
747
751
|
model WorkOrderChannel {
|
|
@@ -1931,7 +1935,8 @@ model SFU {
|
|
|
1931
1935
|
installation NetworkElementInstallation? @relation(fields: [installationId], references: [id])
|
|
1932
1936
|
installationId String?
|
|
1933
1937
|
|
|
1934
|
-
qrCodeTag
|
|
1938
|
+
qrCodeTag qrCodeTag[]
|
|
1939
|
+
workOrders WorkOrder[]
|
|
1935
1940
|
}
|
|
1936
1941
|
|
|
1937
1942
|
model SFUTemplate {
|
|
@@ -2004,7 +2009,8 @@ model Building {
|
|
|
2004
2009
|
installation NetworkElementInstallation? @relation(fields: [installationId], references: [id])
|
|
2005
2010
|
installationId String?
|
|
2006
2011
|
|
|
2007
|
-
qrCodeTag
|
|
2012
|
+
qrCodeTag qrCodeTag[]
|
|
2013
|
+
workOrders WorkOrder[]
|
|
2008
2014
|
}
|
|
2009
2015
|
|
|
2010
2016
|
model BuildingTemplate {
|