Protected columns?
Hey, I'm new to Supabase and postgresql in general, and I am trying to secure a
I therefore implemented RLS so that users are only allowed to edit their own profile:
But, if I haven't missed anything, I guess users would be able to edit any column in their profile, including
Thanks in advance for the help!
public.profiles table in the database:I therefore implemented RLS so that users are only allowed to edit their own profile:
But, if I haven't missed anything, I guess users would be able to edit any column in their profile, including
id, email, created_at and updated_at in this case. So what can I do to prevent that?Thanks in advance for the help!