New row violates row-level security policy for table
I've set the RLS policy for everyone to have INSERT permission, but I still couldn't add anything to my table. Why is that?






2 Replies
On version 1 (it is not clear what you are using) inserts do a select also and need to meet the select policy, or have
returning:"minimal"
set.Thank you!