meu sql onlyplans 


insert into storage.buckets (id, name, public)
values
  ('onlyplans-media', 'onlyplans-media', true),
  ('onlyplans-verification', 'onlyplans-verification', false),
  ('onlyplans-selfies', 'onlyplans-selfies', false)
on conflict (id) do nothing;

drop policy if exists "onlyplans_public_read_media" on storage.objects;
drop policy if exists "onlyplans_deny_anon_write" on storage.objects;

create policy "onlyplans_public_read_media"
on storage.objects
for select
to anon
using (bucket_id = 'onlyplans-media');

create policy "onlyplans_deny_anon_write"
on storage.objects
for insert
to anon, authenticated
with check (false);

SUPABASE_URL=https://kcskqhsciinvhchpdzdw.supabase.co
SUPABASE_SERVICE_ROLE_KEY=sb_secret_4k0WsaU4Dh_i55JJlA-fhg_r3zjqtaq