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