-- Run this in Supabase SQL Editor if you get "column profiles.avatar_url does not exist" -- Use the schema where your profiles table lives (omotomo or public). -- If your app uses schema omotomo (db: { schema: 'omotomo' }): ALTER TABLE omotomo.profiles ADD COLUMN IF NOT EXISTS avatar_url text; -- If your profiles table is in public schema instead, run this instead: -- ALTER TABLE public.profiles -- ADD COLUMN IF NOT EXISTS avatar_url text;