efiber-prisma-schema 1.6.8 → 1.6.10
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 +1 -1
- package/prisma/schema.prisma +40 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1202,6 +1202,8 @@ model Cable {
|
|
|
1202
1202
|
geometry Json? //Icon for the cable
|
|
1203
1203
|
attributes Json? //Attributes for the cable
|
|
1204
1204
|
coordinates Json?
|
|
1205
|
+
autoincrement Boolean @default(true)
|
|
1206
|
+
namePrefix String?
|
|
1205
1207
|
|
|
1206
1208
|
createdAt DateTime @default(now())
|
|
1207
1209
|
updatedAt DateTime @updatedAt
|
|
@@ -1235,6 +1237,8 @@ model CableTemplate {
|
|
|
1235
1237
|
geometry Json? //Icon for the cable
|
|
1236
1238
|
attributes Json? //Attributes for the cable
|
|
1237
1239
|
coordinates Json?
|
|
1240
|
+
autoincrement Boolean @default(true)
|
|
1241
|
+
namePrefix String?
|
|
1238
1242
|
|
|
1239
1243
|
createdAt DateTime @default(now())
|
|
1240
1244
|
updatedAt DateTime @updatedAt
|
|
@@ -1300,6 +1304,8 @@ model PboFatTemplate {
|
|
|
1300
1304
|
zone Json? //Color code for zone
|
|
1301
1305
|
geometry Json? //Icon for the PBO FAT
|
|
1302
1306
|
attributes Json? //Attributes for the PBO FAT
|
|
1307
|
+
autoincrement Boolean @default(true)
|
|
1308
|
+
namePrefix String?
|
|
1303
1309
|
|
|
1304
1310
|
createdAt DateTime @default(now())
|
|
1305
1311
|
updatedAt DateTime @updatedAt
|
|
@@ -1331,6 +1337,8 @@ model PboFat {
|
|
|
1331
1337
|
zone Json? //Color code for zone
|
|
1332
1338
|
geometry Json? //Icon for the PBO FAT
|
|
1333
1339
|
attributes Json? //Attributes for the PBO FAT
|
|
1340
|
+
autoincrement Boolean @default(true)
|
|
1341
|
+
namePrefix String?
|
|
1334
1342
|
|
|
1335
1343
|
createdAt DateTime @default(now())
|
|
1336
1344
|
updatedAt DateTime @updatedAt
|
|
@@ -1390,6 +1398,8 @@ model SpliceClosure {
|
|
|
1390
1398
|
geometry Json? //Icon for the PBO FAT
|
|
1391
1399
|
attributes Json? //Attributes for the PBO FAT
|
|
1392
1400
|
description String?
|
|
1401
|
+
autoincrement Boolean @default(true)
|
|
1402
|
+
namePrefix String?
|
|
1393
1403
|
|
|
1394
1404
|
createdAt DateTime @default(now())
|
|
1395
1405
|
updatedAt DateTime @updatedAt
|
|
@@ -1422,6 +1432,8 @@ model SpliceClosureTemplate {
|
|
|
1422
1432
|
geometry Json? //Icon for the PBO FAT
|
|
1423
1433
|
attributes Json? //Attributes for the PBO FAT
|
|
1424
1434
|
description String?
|
|
1435
|
+
autoincrement Boolean @default(true)
|
|
1436
|
+
namePrefix String?
|
|
1425
1437
|
|
|
1426
1438
|
createdAt DateTime @default(now())
|
|
1427
1439
|
updatedAt DateTime @updatedAt
|
|
@@ -1480,6 +1492,8 @@ model ZoneNro {
|
|
|
1480
1492
|
geometry Json?
|
|
1481
1493
|
attributes Json?
|
|
1482
1494
|
coordinates Json?
|
|
1495
|
+
autoincrement Boolean @default(true)
|
|
1496
|
+
namePrefix String?
|
|
1483
1497
|
|
|
1484
1498
|
createdAt DateTime @default(now())
|
|
1485
1499
|
updatedAt DateTime @updatedAt
|
|
@@ -1511,6 +1525,8 @@ model ZoneNroTemplate {
|
|
|
1511
1525
|
geometry Json?
|
|
1512
1526
|
attributes Json?
|
|
1513
1527
|
coordinates Json?
|
|
1528
|
+
autoincrement Boolean @default(true)
|
|
1529
|
+
namePrefix String?
|
|
1514
1530
|
|
|
1515
1531
|
createdAt DateTime @default(now())
|
|
1516
1532
|
updatedAt DateTime @updatedAt
|
|
@@ -1541,6 +1557,8 @@ model Pole {
|
|
|
1541
1557
|
zone Json?
|
|
1542
1558
|
geometry Json?
|
|
1543
1559
|
attributes Json?
|
|
1560
|
+
autoincrement Boolean @default(true)
|
|
1561
|
+
namePrefix String?
|
|
1544
1562
|
|
|
1545
1563
|
createdAt DateTime @default(now())
|
|
1546
1564
|
updatedAt DateTime @updatedAt
|
|
@@ -1571,6 +1589,8 @@ model PoleTemplate {
|
|
|
1571
1589
|
zone Json?
|
|
1572
1590
|
geometry Json?
|
|
1573
1591
|
attributes Json?
|
|
1592
|
+
autoincrement Boolean @default(true)
|
|
1593
|
+
namePrefix String?
|
|
1574
1594
|
|
|
1575
1595
|
createdAt DateTime @default(now())
|
|
1576
1596
|
updatedAt DateTime @updatedAt
|
|
@@ -1601,6 +1621,8 @@ model Manhole {
|
|
|
1601
1621
|
zone Json?
|
|
1602
1622
|
geometry Json?
|
|
1603
1623
|
attributes Json?
|
|
1624
|
+
autoincrement Boolean @default(true)
|
|
1625
|
+
namePrefix String?
|
|
1604
1626
|
|
|
1605
1627
|
createdAt DateTime @default(now())
|
|
1606
1628
|
updatedAt DateTime @updatedAt
|
|
@@ -1631,6 +1653,8 @@ model ManholeTemplate {
|
|
|
1631
1653
|
zone Json?
|
|
1632
1654
|
geometry Json?
|
|
1633
1655
|
attributes Json?
|
|
1656
|
+
autoincrement Boolean @default(true)
|
|
1657
|
+
namePrefix String?
|
|
1634
1658
|
|
|
1635
1659
|
createdAt DateTime @default(now())
|
|
1636
1660
|
updatedAt DateTime @updatedAt
|
|
@@ -1661,6 +1685,8 @@ model Loop {
|
|
|
1661
1685
|
zone Json?
|
|
1662
1686
|
geometry Json?
|
|
1663
1687
|
attributes Json?
|
|
1688
|
+
autoincrement Boolean @default(true)
|
|
1689
|
+
namePrefix String?
|
|
1664
1690
|
|
|
1665
1691
|
createdAt DateTime @default(now())
|
|
1666
1692
|
updatedAt DateTime @updatedAt
|
|
@@ -1691,6 +1717,8 @@ model LoopTemplate {
|
|
|
1691
1717
|
zone Json?
|
|
1692
1718
|
geometry Json?
|
|
1693
1719
|
attributes Json?
|
|
1720
|
+
autoincrement Boolean @default(true)
|
|
1721
|
+
namePrefix String?
|
|
1694
1722
|
|
|
1695
1723
|
createdAt DateTime @default(now())
|
|
1696
1724
|
updatedAt DateTime @updatedAt
|
|
@@ -1721,6 +1749,8 @@ model FDTSRO {
|
|
|
1721
1749
|
zone Json?
|
|
1722
1750
|
geometry Json?
|
|
1723
1751
|
attributes Json?
|
|
1752
|
+
autoincrement Boolean @default(true)
|
|
1753
|
+
namePrefix String?
|
|
1724
1754
|
|
|
1725
1755
|
createdAt DateTime @default(now())
|
|
1726
1756
|
updatedAt DateTime @updatedAt
|
|
@@ -1751,6 +1781,8 @@ model FDTSROTemplate {
|
|
|
1751
1781
|
zone Json?
|
|
1752
1782
|
geometry Json?
|
|
1753
1783
|
attributes Json?
|
|
1784
|
+
autoincrement Boolean @default(true)
|
|
1785
|
+
namePrefix String?
|
|
1754
1786
|
|
|
1755
1787
|
createdAt DateTime @default(now())
|
|
1756
1788
|
updatedAt DateTime @updatedAt
|
|
@@ -1781,6 +1813,8 @@ model SFU {
|
|
|
1781
1813
|
zone Json?
|
|
1782
1814
|
geometry Json?
|
|
1783
1815
|
attributes Json?
|
|
1816
|
+
autoincrement Boolean @default(true)
|
|
1817
|
+
namePrefix String?
|
|
1784
1818
|
|
|
1785
1819
|
createdAt DateTime @default(now())
|
|
1786
1820
|
updatedAt DateTime @updatedAt
|
|
@@ -1811,6 +1845,8 @@ model SFUTemplate {
|
|
|
1811
1845
|
zone Json?
|
|
1812
1846
|
geometry Json?
|
|
1813
1847
|
attributes Json?
|
|
1848
|
+
autoincrement Boolean @default(true)
|
|
1849
|
+
namePrefix String?
|
|
1814
1850
|
|
|
1815
1851
|
createdAt DateTime @default(now())
|
|
1816
1852
|
updatedAt DateTime @updatedAt
|
|
@@ -1841,6 +1877,8 @@ model Building {
|
|
|
1841
1877
|
zone Json?
|
|
1842
1878
|
geometry Json?
|
|
1843
1879
|
attributes Json?
|
|
1880
|
+
autoincrement Boolean @default(true)
|
|
1881
|
+
namePrefix String?
|
|
1844
1882
|
|
|
1845
1883
|
createdAt DateTime @default(now())
|
|
1846
1884
|
updatedAt DateTime @updatedAt
|
|
@@ -1871,6 +1909,8 @@ model BuildingTemplate {
|
|
|
1871
1909
|
zone Json?
|
|
1872
1910
|
geometry Json?
|
|
1873
1911
|
attributes Json?
|
|
1912
|
+
autoincrement Boolean @default(true)
|
|
1913
|
+
namePrefix String?
|
|
1874
1914
|
|
|
1875
1915
|
createdAt DateTime @default(now())
|
|
1876
1916
|
updatedAt DateTime @updatedAt
|