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_logsto anonwith check (true);
`create policy "Enable insert for anon"on public.event_logsto anonwith check (true);
but everytime my supabase-py db client tires to execute the insert I get the
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.
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.