-- Run in Supabase SQL editor (once) to support profile photos.
alter table public.users
  add column if not exists avatar_url text null;
