will this trigger work when the user updates their email?
create function public.update_user_email()returns triggerlanguage plpgsqlsecurity definer set search_path = publicas $$begin update public.users set email = new.email where id = new.id; return new;end;$$;
create function public.update_user_email()returns triggerlanguage plpgsqlsecurity definer set search_path = publicas $$begin update public.users set email = new.email where id = new.id; return new;end;$$;
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.