efiber-prisma-schema 1.13.6 → 1.13.8

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.6",
3
+ "version": "1.13.8",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "Building" ADD COLUMN "address" TEXT;
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "SFU" ADD COLUMN "address" TEXT;
@@ -2583,6 +2583,7 @@ model SFU {
2583
2583
  isInstalled Boolean @default(false)
2584
2584
  installationDate DateTime?
2585
2585
 
2586
+ address String? //Address of the SFU
2586
2587
  linkToDispatch String? //Link to the dispatch system
2587
2588
  macAddress String? //MAC address of the Router in the SFU
2588
2589
  gponAddress String? //GPON address of the SFU
@@ -2689,6 +2690,7 @@ model Building {
2689
2690
  installationStatus String? @default("pending") //pending, approved, in-revision
2690
2691
 
2691
2692
  // Reporting mirrors
2693
+ address String? //Address of the building
2692
2694
  buildingName String? //Name of the building
2693
2695
  totalFlats Int? //Total number of flats in the building
2694
2696
  floorCount Int? //Number of floors in the building