Files
thrilltrack-explorer/supabase/migrations/20250928182305_ae7557d8-df47-4f5b-9d1d-271d1d8de180.sql
2025-09-28 18:23:32 +00:00

5 lines
252 B
SQL

-- First migration: Add superuser role and banned column
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;