CREATE POLICY "Admins and managers can delete form inbox" ON public.form_inbox FOR DELETE TO authenticated USING ( has_role(auth.uid(), 'admin'::app_role) OR has_role(auth.uid(), 'manager'::app_role) );