From d6fca6c27ec07b563bd8fe0c1368bf8c55c15250 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Tue, 19 May 2026 12:42:56 +0530 Subject: [PATCH] fix: enable RLS for failed webhook events --- supabase/migrations/0011_enable_failed_webhook_events_rls.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 supabase/migrations/0011_enable_failed_webhook_events_rls.sql diff --git a/supabase/migrations/0011_enable_failed_webhook_events_rls.sql b/supabase/migrations/0011_enable_failed_webhook_events_rls.sql new file mode 100644 index 0000000..0e4e941 --- /dev/null +++ b/supabase/migrations/0011_enable_failed_webhook_events_rls.sql @@ -0,0 +1,3 @@ +-- failed_webhook_events is a service-role-only dead letter queue. +-- Enabling RLS without public policies blocks anon/authenticated clients by default. +ALTER TABLE failed_webhook_events ENABLE ROW LEVEL SECURITY;