DELETE Policy is set to FALSE
# off-topic
c
DELETE Policy is set to FALSE
I have my delete policy defined as follows
Copy code
sql
CREATE POLICY "Never allow delete access" ON public.users FOR DELETE USING ( false );
But when I try to delete a user from client-side, the response never returns an error neither any messages.
Also the row was never deleted.
Is this a normal behavior? @User