mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:51:12 -05:00
7 lines
285 B
SQL
7 lines
285 B
SQL
-- Add ban_reason column to profiles table
|
|
ALTER TABLE public.profiles
|
|
ADD COLUMN IF NOT EXISTS ban_reason text;
|
|
|
|
COMMENT ON COLUMN public.profiles.ban_reason IS
|
|
'Explanation for why user account was suspended. Only visible to moderators and the banned user during login attempts.';
|