Skip to content

Commit e19ee05

Browse files
committed
fix: migration update after alter
1 parent 68ccfb0 commit e19ee05

File tree

1 file changed

+3
-3
lines changed
  • prisma/postgresql-migrations/20241006130306_alter_status_on_message_table

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- AlterTable
2-
UPDATE "Message" SET "status" = 'PENDING';
3-
42
ALTER TABLE "Message"
53
ALTER COLUMN "status"
64
SET
7-
DATA TYPE VARCHAR(30);
5+
DATA TYPE VARCHAR(30);
6+
7+
UPDATE "Message" SET "status" = 'PENDING';

0 commit comments

Comments
 (0)