efiber-prisma-schema 1.12.12 → 1.12.13

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.12.12",
3
+ "version": "1.12.13",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,8 @@
1
+ /*
2
+ Warnings:
3
+
4
+ - Added the required column `type` to the `ClusterComments` table without a default value. This is not possible if the table is not empty.
5
+
6
+ */
7
+ -- AlterTable
8
+ ALTER TABLE "ClusterComments" ADD COLUMN "type" TEXT NOT NULL;
@@ -2458,6 +2458,7 @@ model ClusterComments {
2458
2458
  no Int @default(autoincrement())
2459
2459
 
2460
2460
  comment String
2461
+ type String
2461
2462
  createdAt DateTime @default(now())
2462
2463
  updatedAt DateTime @updatedAt
2463
2464
  deletedAt DateTime?