mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:51:12 -05:00
5 lines
252 B
SQL
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; |