Files
thrilltrack-explorer/supabase/migrations/20250928182338_a3d67af0-bfbc-4a93-812e-148600901d73.sql
2025-09-28 18:24:10 +00:00

5 lines
245 B
SQL

-- First, add superuser role to the app_role enum
ALTER TYPE public.app_role ADD VALUE IF NOT EXISTS 'superuser';
-- Add banned column to profiles table
ALTER TABLE public.profiles ADD COLUMN IF NOT EXISTS banned boolean NOT NULL DEFAULT false;