efiber-prisma-schema 1.6.8 → 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.8",
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
@@ -1480,6 +1486,8 @@ model ZoneNro {
1480
1486
  geometry Json?
1481
1487
  attributes Json?
1482
1488
  coordinates Json?
1489
+ autoincrement Boolean @default(true)
1490
+ namePrefix String?
1483
1491
 
1484
1492
  createdAt DateTime @default(now())
1485
1493
  updatedAt DateTime @updatedAt
@@ -1541,6 +1549,8 @@ model Pole {
1541
1549
  zone Json?
1542
1550
  geometry Json?
1543
1551
  attributes Json?
1552
+ autoincrement Boolean @default(true)
1553
+ namePrefix String?
1544
1554
 
1545
1555
  createdAt DateTime @default(now())
1546
1556
  updatedAt DateTime @updatedAt
@@ -1601,6 +1611,8 @@ model Manhole {
1601
1611
  zone Json?
1602
1612
  geometry Json?
1603
1613
  attributes Json?
1614
+ autoincrement Boolean @default(true)
1615
+ namePrefix String?
1604
1616
 
1605
1617
  createdAt DateTime @default(now())
1606
1618
  updatedAt DateTime @updatedAt
@@ -1661,6 +1673,8 @@ model Loop {
1661
1673
  zone Json?
1662
1674
  geometry Json?
1663
1675
  attributes Json?
1676
+ autoincrement Boolean @default(true)
1677
+ namePrefix String?
1664
1678
 
1665
1679
  createdAt DateTime @default(now())
1666
1680
  updatedAt DateTime @updatedAt
@@ -1721,6 +1735,8 @@ model FDTSRO {
1721
1735
  zone Json?
1722
1736
  geometry Json?
1723
1737
  attributes Json?
1738
+ autoincrement Boolean @default(true)
1739
+ namePrefix String?
1724
1740
 
1725
1741
  createdAt DateTime @default(now())
1726
1742
  updatedAt DateTime @updatedAt
@@ -1781,6 +1797,8 @@ model SFU {
1781
1797
  zone Json?
1782
1798
  geometry Json?
1783
1799
  attributes Json?
1800
+ autoincrement Boolean @default(true)
1801
+ namePrefix String?
1784
1802
 
1785
1803
  createdAt DateTime @default(now())
1786
1804
  updatedAt DateTime @updatedAt
@@ -1841,6 +1859,8 @@ model Building {
1841
1859
  zone Json?
1842
1860
  geometry Json?
1843
1861
  attributes Json?
1862
+ autoincrement Boolean @default(true)
1863
+ namePrefix String?
1844
1864
 
1845
1865
  createdAt DateTime @default(now())
1846
1866
  updatedAt DateTime @updatedAt