dokploy/drizzle/0020_ambitious_edwin_jarvis.sql

7 lines
265 B
SQL

DO $$ BEGIN
CREATE TYPE "public"."notificationType" AS ENUM('slack', 'telegram', 'discord', 'email');
EXCEPTION
WHEN duplicate_object THEN null;
END $$;
--> statement-breakpoint
ALTER TABLE "notification" ADD COLUMN "notificationType" "notificationType" NOT NULL;