efiber-prisma-schema 1.13.2 → 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.2",
3
+ "version": "1.13.4",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,9 @@
1
+ /*
2
+ Warnings:
3
+
4
+ - You are about to drop the column `fatMaxCapacity` on the `PboFat` table. All the data in the column will be lost.
5
+
6
+ */
7
+ -- AlterTable
8
+ ALTER TABLE "PboFat" DROP COLUMN "fatMaxCapacity",
9
+ ADD COLUMN "fatMaximumCapacity" INTEGER;
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "Revision" ADD COLUMN "clientRevisionId" TEXT;
@@ -1836,7 +1836,7 @@ model PboFat {
1836
1836
  installationStatus String? @default("pending") //pending, approved, in-revision
1837
1837
 
1838
1838
  // Reporting mirrors
1839
- fatMaxCapacity Int? //Maximum capacity of the PBO FAT
1839
+ fatMaximumCapacity Int? //Maximum capacity of the PBO FAT
1840
1840
  fatExistingSubscribers Int? //Existing subscribers in the PBO FAT
1841
1841
  fatAvailableCapacity Int? //Available capacity in the PBO FAT
1842
1842
  placeOfInstallation String? //ID to an Infrastructure element
@@ -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])