efiber-prisma-schema 1.1.0 → 1.1.1

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.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1092,7 +1092,7 @@ model ReportFormats {
1092
1092
  model NetworkElement {
1093
1093
  id String @id @unique @default(uuid())
1094
1094
  no Int @default(autoincrement())
1095
- type String
1095
+ type String @unique
1096
1096
  createdAt DateTime @default(now())
1097
1097
  updatedAt DateTime @updatedAt
1098
1098
  deletedAt DateTime?