Files
triggerdotdev--trigger.dev/internal-packages/database/prisma/migrations/20230724074140_changed/migration.sql
T
2026-07-13 13:32:57 +08:00

24 lines
555 B
SQL

/*
Warnings:
- The `event` column on the `EventDispatcher` table would be dropped and recreated. This will lead to data loss if there is data in the column.
*/
-- AlterTable
-- Step 1: Create temporary column
ALTER TABLE "EventDispatcher"
ADD COLUMN temp_event TEXT[];
-- Step 2: Update temporary column
UPDATE "EventDispatcher"
SET temp_event = ARRAY[event];
-- Step 3: Drop original column
ALTER TABLE "EventDispatcher"
DROP COLUMN "event";
-- Step 4: Rename temporary column
ALTER TABLE "EventDispatcher"
RENAME COLUMN temp_event TO "event";