-- 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 $$;