Enable insert for anon

Hi!

I'm learning about Supabase and I've created a little project in python using supabase-py client. I created a "event-logs" table, enabled the RLS with a policy:
`
create policy "Enable insert for anon"
on public.event_logs
to anon
with check (true);
but everytime my supabase-py db client tires to execute the insert I get the Failed to log event: {'code': '42501', 'details': None, 'hint': None, 'message': 'new row violates row-level security policy for table "event_logs"'}`
and I can not figure out why.
Was this page helpful?