efiber-prisma-schema 1.13.7 → 1.14.0

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.7",
3
+ "version": "1.14.0",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "SFU" ADD COLUMN "address" TEXT;
@@ -0,0 +1,3 @@
1
+ -- AlterTable
2
+ ALTER TABLE "EmailConfigurations" ADD COLUMN "isCustomSla" BOOLEAN NOT NULL DEFAULT false,
3
+ ADD COLUMN "slaFieldKey" TEXT;
@@ -759,6 +759,8 @@ model EmailConfigurations {
759
759
  emailfirstpull Int?
760
760
  emailfirstcount Int?
761
761
  excelrownumber Int?
762
+ isCustomSla Boolean @default(false)
763
+ slaFieldKey String?
762
764
 
763
765
  createdAt DateTime @default(now())
764
766
  updatedAt DateTime @updatedAt
@@ -2583,6 +2585,7 @@ model SFU {
2583
2585
  isInstalled Boolean @default(false)
2584
2586
  installationDate DateTime?
2585
2587
 
2588
+ address String? //Address of the SFU
2586
2589
  linkToDispatch String? //Link to the dispatch system
2587
2590
  macAddress String? //MAC address of the Router in the SFU
2588
2591
  gponAddress String? //GPON address of the SFU