diff --git a/supabase/migrations/20250928182338_a3d67af0-bfbc-4a93-812e-148600901d73.sql b/supabase/migrations/20250928182338_a3d67af0-bfbc-4a93-812e-148600901d73.sql new file mode 100644 index 00000000..b68a7b68 --- /dev/null +++ b/supabase/migrations/20250928182338_a3d67af0-bfbc-4a93-812e-148600901d73.sql @@ -0,0 +1,5 @@ +-- 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; \ No newline at end of file