efiber-prisma-schema 1.6.7 → 1.6.9

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.6.7",
3
+ "version": "1.6.9",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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
@@ -1331,6 +1333,8 @@ model PboFat {
1331
1333
  zone Json? //Color code for zone
1332
1334
  geometry Json? //Icon for the PBO FAT
1333
1335
  attributes Json? //Attributes for the PBO FAT
1336
+ autoincrement Boolean @default(true)
1337
+ namePrefix String?
1334
1338
 
1335
1339
  createdAt DateTime @default(now())
1336
1340
  updatedAt DateTime @updatedAt
@@ -1390,6 +1394,8 @@ model SpliceClosure {
1390
1394
  geometry Json? //Icon for the PBO FAT
1391
1395
  attributes Json? //Attributes for the PBO FAT
1392
1396
  description String?
1397
+ autoincrement Boolean @default(true)
1398
+ namePrefix String?
1393
1399
 
1394
1400
  createdAt DateTime @default(now())
1395
1401
  updatedAt DateTime @updatedAt
@@ -1479,6 +1485,9 @@ model ZoneNro {
1479
1485
  zone Json?
1480
1486
  geometry Json?
1481
1487
  attributes Json?
1488
+ coordinates Json?
1489
+ autoincrement Boolean @default(true)
1490
+ namePrefix String?
1482
1491
 
1483
1492
  createdAt DateTime @default(now())
1484
1493
  updatedAt DateTime @updatedAt
@@ -1509,6 +1518,7 @@ model ZoneNroTemplate {
1509
1518
  zone Json?
1510
1519
  geometry Json?
1511
1520
  attributes Json?
1521
+ coordinates Json?
1512
1522
 
1513
1523
  createdAt DateTime @default(now())
1514
1524
  updatedAt DateTime @updatedAt
@@ -1539,6 +1549,8 @@ model Pole {
1539
1549
  zone Json?
1540
1550
  geometry Json?
1541
1551
  attributes Json?
1552
+ autoincrement Boolean @default(true)
1553
+ namePrefix String?
1542
1554
 
1543
1555
  createdAt DateTime @default(now())
1544
1556
  updatedAt DateTime @updatedAt
@@ -1599,6 +1611,8 @@ model Manhole {
1599
1611
  zone Json?
1600
1612
  geometry Json?
1601
1613
  attributes Json?
1614
+ autoincrement Boolean @default(true)
1615
+ namePrefix String?
1602
1616
 
1603
1617
  createdAt DateTime @default(now())
1604
1618
  updatedAt DateTime @updatedAt
@@ -1659,6 +1673,8 @@ model Loop {
1659
1673
  zone Json?
1660
1674
  geometry Json?
1661
1675
  attributes Json?
1676
+ autoincrement Boolean @default(true)
1677
+ namePrefix String?
1662
1678
 
1663
1679
  createdAt DateTime @default(now())
1664
1680
  updatedAt DateTime @updatedAt
@@ -1719,6 +1735,8 @@ model FDTSRO {
1719
1735
  zone Json?
1720
1736
  geometry Json?
1721
1737
  attributes Json?
1738
+ autoincrement Boolean @default(true)
1739
+ namePrefix String?
1722
1740
 
1723
1741
  createdAt DateTime @default(now())
1724
1742
  updatedAt DateTime @updatedAt
@@ -1779,6 +1797,8 @@ model SFU {
1779
1797
  zone Json?
1780
1798
  geometry Json?
1781
1799
  attributes Json?
1800
+ autoincrement Boolean @default(true)
1801
+ namePrefix String?
1782
1802
 
1783
1803
  createdAt DateTime @default(now())
1784
1804
  updatedAt DateTime @updatedAt
@@ -1839,6 +1859,8 @@ model Building {
1839
1859
  zone Json?
1840
1860
  geometry Json?
1841
1861
  attributes Json?
1862
+ autoincrement Boolean @default(true)
1863
+ namePrefix String?
1842
1864
 
1843
1865
  createdAt DateTime @default(now())
1844
1866
  updatedAt DateTime @updatedAt