MOPC-App/prisma/migrations/20260204000000_add_round_en.../migration.sql

7 lines
245 B
SQL

-- AddRoundEntryNotification
-- Adds the entryNotificationType column to Round table for configurable notifications
DO $$ BEGIN
ALTER TABLE "Round" ADD COLUMN "entryNotificationType" TEXT;
EXCEPTION WHEN duplicate_column THEN NULL; END $$;