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