efiber-prisma-schema 1.6.9 → 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 +20 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1237,6 +1237,8 @@ model CableTemplate {
|
|
|
1237
1237
|
geometry Json? //Icon for the cable
|
|
1238
1238
|
attributes Json? //Attributes for the cable
|
|
1239
1239
|
coordinates Json?
|
|
1240
|
+
autoincrement Boolean @default(true)
|
|
1241
|
+
namePrefix String?
|
|
1240
1242
|
|
|
1241
1243
|
createdAt DateTime @default(now())
|
|
1242
1244
|
updatedAt DateTime @updatedAt
|
|
@@ -1302,6 +1304,8 @@ model PboFatTemplate {
|
|
|
1302
1304
|
zone Json? //Color code for zone
|
|
1303
1305
|
geometry Json? //Icon for the PBO FAT
|
|
1304
1306
|
attributes Json? //Attributes for the PBO FAT
|
|
1307
|
+
autoincrement Boolean @default(true)
|
|
1308
|
+
namePrefix String?
|
|
1305
1309
|
|
|
1306
1310
|
createdAt DateTime @default(now())
|
|
1307
1311
|
updatedAt DateTime @updatedAt
|
|
@@ -1428,6 +1432,8 @@ model SpliceClosureTemplate {
|
|
|
1428
1432
|
geometry Json? //Icon for the PBO FAT
|
|
1429
1433
|
attributes Json? //Attributes for the PBO FAT
|
|
1430
1434
|
description String?
|
|
1435
|
+
autoincrement Boolean @default(true)
|
|
1436
|
+
namePrefix String?
|
|
1431
1437
|
|
|
1432
1438
|
createdAt DateTime @default(now())
|
|
1433
1439
|
updatedAt DateTime @updatedAt
|
|
@@ -1519,6 +1525,8 @@ model ZoneNroTemplate {
|
|
|
1519
1525
|
geometry Json?
|
|
1520
1526
|
attributes Json?
|
|
1521
1527
|
coordinates Json?
|
|
1528
|
+
autoincrement Boolean @default(true)
|
|
1529
|
+
namePrefix String?
|
|
1522
1530
|
|
|
1523
1531
|
createdAt DateTime @default(now())
|
|
1524
1532
|
updatedAt DateTime @updatedAt
|
|
@@ -1581,6 +1589,8 @@ model PoleTemplate {
|
|
|
1581
1589
|
zone Json?
|
|
1582
1590
|
geometry Json?
|
|
1583
1591
|
attributes Json?
|
|
1592
|
+
autoincrement Boolean @default(true)
|
|
1593
|
+
namePrefix String?
|
|
1584
1594
|
|
|
1585
1595
|
createdAt DateTime @default(now())
|
|
1586
1596
|
updatedAt DateTime @updatedAt
|
|
@@ -1643,6 +1653,8 @@ model ManholeTemplate {
|
|
|
1643
1653
|
zone Json?
|
|
1644
1654
|
geometry Json?
|
|
1645
1655
|
attributes Json?
|
|
1656
|
+
autoincrement Boolean @default(true)
|
|
1657
|
+
namePrefix String?
|
|
1646
1658
|
|
|
1647
1659
|
createdAt DateTime @default(now())
|
|
1648
1660
|
updatedAt DateTime @updatedAt
|
|
@@ -1705,6 +1717,8 @@ model LoopTemplate {
|
|
|
1705
1717
|
zone Json?
|
|
1706
1718
|
geometry Json?
|
|
1707
1719
|
attributes Json?
|
|
1720
|
+
autoincrement Boolean @default(true)
|
|
1721
|
+
namePrefix String?
|
|
1708
1722
|
|
|
1709
1723
|
createdAt DateTime @default(now())
|
|
1710
1724
|
updatedAt DateTime @updatedAt
|
|
@@ -1767,6 +1781,8 @@ model FDTSROTemplate {
|
|
|
1767
1781
|
zone Json?
|
|
1768
1782
|
geometry Json?
|
|
1769
1783
|
attributes Json?
|
|
1784
|
+
autoincrement Boolean @default(true)
|
|
1785
|
+
namePrefix String?
|
|
1770
1786
|
|
|
1771
1787
|
createdAt DateTime @default(now())
|
|
1772
1788
|
updatedAt DateTime @updatedAt
|
|
@@ -1829,6 +1845,8 @@ model SFUTemplate {
|
|
|
1829
1845
|
zone Json?
|
|
1830
1846
|
geometry Json?
|
|
1831
1847
|
attributes Json?
|
|
1848
|
+
autoincrement Boolean @default(true)
|
|
1849
|
+
namePrefix String?
|
|
1832
1850
|
|
|
1833
1851
|
createdAt DateTime @default(now())
|
|
1834
1852
|
updatedAt DateTime @updatedAt
|
|
@@ -1891,6 +1909,8 @@ model BuildingTemplate {
|
|
|
1891
1909
|
zone Json?
|
|
1892
1910
|
geometry Json?
|
|
1893
1911
|
attributes Json?
|
|
1912
|
+
autoincrement Boolean @default(true)
|
|
1913
|
+
namePrefix String?
|
|
1894
1914
|
|
|
1895
1915
|
createdAt DateTime @default(now())
|
|
1896
1916
|
updatedAt DateTime @updatedAt
|