mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
7 lines
265 B
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; |