efiber-prisma-schema 1.7.2 → 1.8.0

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.7.2",
3
+ "version": "1.8.0",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2083,6 +2083,8 @@ model Cluster {
2083
2083
  id String @id @unique @default(uuid())
2084
2084
  no Int @default(autoincrement())
2085
2085
  name String @unique
2086
+ coordinates Json?
2087
+ color String?
2086
2088
 
2087
2089
  createdAt DateTime @default(now())
2088
2090
  updatedAt DateTime @updatedAt