Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 18:33:49 +00:00
co-authored by renee-png
parent 280213904d
commit 5401658b28
@@ -0,0 +1,7 @@
DROP POLICY IF EXISTS pr_delete_owner_or_admin ON public.payment_requests;
CREATE POLICY pr_delete_auth
ON public.payment_requests
FOR DELETE
TO authenticated
USING (auth.uid() IS NOT NULL);