You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
451 B
11 lines
451 B
-- 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;
|