efiber-prisma-schema 1.10.8 → 1.10.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.10.8",
3
+ "version": "1.10.9",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "homepage": "https://github.com/ubuniworks-projects/efiber-prisma-schema#readme",
20
20
  "devDependencies": {
21
- "@prisma/client": "^6.3.1",
22
- "prisma": "^6.3.1"
21
+ "@prisma/client": "^6.5.0",
22
+ "prisma": "^6.5.0"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@prisma/client": ">=5"
@@ -1673,7 +1673,7 @@ model Pole {
1673
1673
  installation NetworkElementInstallation? @relation(fields: [installationId], references: [id])
1674
1674
  installationId String?
1675
1675
 
1676
- qrCodeTag qrCodeTag[]
1676
+ qrCodeTag qrCodeTag[]
1677
1677
  }
1678
1678
 
1679
1679
  model PoleTemplate {
@@ -2105,7 +2105,7 @@ model NetworkElementInstallation {
2105
2105
  model CentralOffice {
2106
2106
  id String @id @unique @default(uuid())
2107
2107
  no Int @default(autoincrement())
2108
- name String @unique
2108
+ name String
2109
2109
 
2110
2110
  createdAt DateTime @default(now())
2111
2111
  updatedAt DateTime @updatedAt
@@ -2121,7 +2121,7 @@ model CentralOffice {
2121
2121
  model Cluster {
2122
2122
  id String @id @unique @default(uuid())
2123
2123
  no Int @default(autoincrement())
2124
- name String @unique
2124
+ name String
2125
2125
  coordinates Json?
2126
2126
  color String?
2127
2127
 
@@ -2165,7 +2165,7 @@ model qrCodeTemplate {
2165
2165
  id String @id @unique @default(uuid())
2166
2166
  no Int @default(autoincrement())
2167
2167
  name String
2168
- prefix String @unique
2168
+ prefix String
2169
2169
  index Int //number of qr code generated
2170
2170
  scanned Int @default(0)
2171
2171
  link String? @unique //where the qr code will redirect to
@@ -2323,4 +2323,4 @@ model integrationUserLocation {
2323
2323
  createdAt DateTime @default(now())
2324
2324
  updatedAt DateTime @updatedAt
2325
2325
  deletedAt DateTime?
2326
- }
2326
+ }