efiber-prisma-schema 1.12.5 → 1.12.6
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
-- AlterTable
|
|
2
|
+
ALTER TABLE "Building" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
3
|
+
|
|
4
|
+
-- AlterTable
|
|
5
|
+
ALTER TABLE "FDTSRO" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
6
|
+
|
|
7
|
+
-- AlterTable
|
|
8
|
+
ALTER TABLE "Loop" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
9
|
+
|
|
10
|
+
-- AlterTable
|
|
11
|
+
ALTER TABLE "Manhole" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
12
|
+
|
|
13
|
+
-- AlterTable
|
|
14
|
+
ALTER TABLE "PboFat" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
15
|
+
|
|
16
|
+
-- AlterTable
|
|
17
|
+
ALTER TABLE "Pole" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
18
|
+
|
|
19
|
+
-- AlterTable
|
|
20
|
+
ALTER TABLE "SFU" ADD COLUMN "asBuiltCoordinates" JSONB;
|
|
21
|
+
|
|
22
|
+
-- AlterTable
|
|
23
|
+
ALTER TABLE "SpliceClosure" ADD COLUMN "asBuiltCoordinates" JSONB;
|
package/prisma/schema.prisma
CHANGED
|
@@ -1498,6 +1498,8 @@ model PboFat {
|
|
|
1498
1498
|
namePrefix String?
|
|
1499
1499
|
templateIndex Int?
|
|
1500
1500
|
|
|
1501
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
1502
|
+
|
|
1501
1503
|
// Reporting mirrors
|
|
1502
1504
|
fatMaxCapacity Int? //Maximum capacity of the PBO FAT
|
|
1503
1505
|
fatExistingSubscribers Int? //Existing subscribers in the PBO FAT
|
|
@@ -1580,6 +1582,8 @@ model SpliceClosure {
|
|
|
1580
1582
|
namePrefix String?
|
|
1581
1583
|
templateIndex Int?
|
|
1582
1584
|
|
|
1585
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
1586
|
+
|
|
1583
1587
|
// Reporting mirrors
|
|
1584
1588
|
spliceClosureMaxCapacity Int? //Maximum capacity of the Splice Closure
|
|
1585
1589
|
|
|
@@ -1771,6 +1775,8 @@ model Pole {
|
|
|
1771
1775
|
namePrefix String?
|
|
1772
1776
|
templateIndex Int?
|
|
1773
1777
|
|
|
1778
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
1779
|
+
|
|
1774
1780
|
createdAt DateTime @default(now())
|
|
1775
1781
|
updatedAt DateTime @updatedAt
|
|
1776
1782
|
deletedAt DateTime?
|
|
@@ -1848,6 +1854,8 @@ model Manhole {
|
|
|
1848
1854
|
namePrefix String?
|
|
1849
1855
|
templateIndex Int?
|
|
1850
1856
|
|
|
1857
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
1858
|
+
|
|
1851
1859
|
createdAt DateTime @default(now())
|
|
1852
1860
|
updatedAt DateTime @updatedAt
|
|
1853
1861
|
deletedAt DateTime?
|
|
@@ -1925,6 +1933,8 @@ model Loop {
|
|
|
1925
1933
|
namePrefix String?
|
|
1926
1934
|
templateIndex Int?
|
|
1927
1935
|
|
|
1936
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
1937
|
+
|
|
1928
1938
|
createdAt DateTime @default(now())
|
|
1929
1939
|
updatedAt DateTime @updatedAt
|
|
1930
1940
|
deletedAt DateTime?
|
|
@@ -2002,6 +2012,8 @@ model FDTSRO {
|
|
|
2002
2012
|
namePrefix String?
|
|
2003
2013
|
templateIndex Int?
|
|
2004
2014
|
|
|
2015
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
2016
|
+
|
|
2005
2017
|
// Reporting mirrors
|
|
2006
2018
|
fdtsroMaxCapacity Int? //Maximum capacity of the FDTSRO
|
|
2007
2019
|
|
|
@@ -2083,6 +2095,8 @@ model SFU {
|
|
|
2083
2095
|
namePrefix String?
|
|
2084
2096
|
templateIndex Int?
|
|
2085
2097
|
|
|
2098
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
2099
|
+
|
|
2086
2100
|
createdAt DateTime @default(now())
|
|
2087
2101
|
updatedAt DateTime @updatedAt
|
|
2088
2102
|
deletedAt DateTime?
|
|
@@ -2161,6 +2175,8 @@ model Building {
|
|
|
2161
2175
|
namePrefix String?
|
|
2162
2176
|
templateIndex Int?
|
|
2163
2177
|
|
|
2178
|
+
asBuiltCoordinates Json? //Coordinates when installed
|
|
2179
|
+
|
|
2164
2180
|
// Reporting mirrors
|
|
2165
2181
|
totalFlats Int? //Total number of flats in the building
|
|
2166
2182
|
floorCount Int? //Number of floors in the building
|