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 +1 -1
- package/prisma/schema.prisma +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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?
|