efiber-prisma-schema 1.12.8 → 1.12.9

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.12.8",
3
+ "version": "1.12.9",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "Cluster" ADD COLUMN "installationStatus" INTEGER DEFAULT 0;
@@ -2398,6 +2398,7 @@ model Cluster {
2398
2398
 
2399
2399
  projectPhase String? @default("In-Progress")
2400
2400
  namingConvention Json?
2401
+ installationStatus Int? @default(0) //percentage of installation completed
2401
2402
 
2402
2403
  centralOffice CentralOffice? @relation(fields: [centralOfficeId], references: [id])
2403
2404
  centralOfficeId String?