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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "efiber-prisma-schema",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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[]