Skip to content

Commit 56c1dc5

Browse files
committed
fix: add migration for entityType
1 parent 24b9e72 commit 56c1dc5

File tree

1 file changed

+8
-0
lines changed
  • prisma/migrations/20250923223119_entity_type_to_string

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
Warnings:
3+
4+
- You are about to alter the column `entityType` on the `Entity` table. The data in that column could be lost. The data in that column will be cast from `Enum(EnumId(0))` to `VarChar(1024)`.
5+
6+
*/
7+
-- AlterTable
8+
ALTER TABLE `Entity` MODIFY `entityType` VARCHAR(1024) NOT NULL;

0 commit comments

Comments
 (0)