efiber-prisma-schema 1.13.3 → 1.13.4

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.13.3",
3
+ "version": "1.13.4",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "Revision" ADD COLUMN "clientRevisionId" TEXT;
@@ -2709,6 +2709,8 @@ model Revision {
2709
2709
  updatedAt DateTime @updatedAt
2710
2710
  resolvedAt DateTime?
2711
2711
 
2712
+ clientRevisionId String? // ID of the revision from the client side
2713
+
2712
2714
  resolutionNotes String?
2713
2715
 
2714
2716
  pboFat PboFat? @relation(fields: [pboFatId], references: [id])