efiber-prisma-schema 1.2.2 → 1.2.3
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
|
@@ -1241,11 +1241,11 @@ model PboFatAttributes {
|
|
|
1241
1241
|
material Material? @relation(fields: [materialId], references: [id])
|
|
1242
1242
|
materialId String?
|
|
1243
1243
|
|
|
1244
|
-
pboFatTemplate PboFatTemplate @relation(fields: [pboFatTemplateId], references: [id])
|
|
1245
|
-
pboFatTemplateId String
|
|
1244
|
+
pboFatTemplate PboFatTemplate? @relation(fields: [pboFatTemplateId], references: [id])
|
|
1245
|
+
pboFatTemplateId String?
|
|
1246
1246
|
|
|
1247
|
-
pboFat PboFat @relation(fields: [pboFatId], references: [id])
|
|
1248
|
-
pboFatId String
|
|
1247
|
+
pboFat PboFat? @relation(fields: [pboFatId], references: [id])
|
|
1248
|
+
pboFatId String?
|
|
1249
1249
|
|
|
1250
1250
|
splitter Splitter[]
|
|
1251
1251
|
workOrder WorkOrder[]
|