From a12df7c17fcd0d6706f7129942bdbf9089d65f21 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 2 Jan 2026 01:21:51 -0500 Subject: [PATCH] Feature: allowing public reads of public tables --- supabase/migrations/20260102_allow_public_reads.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 supabase/migrations/20260102_allow_public_reads.sql diff --git a/supabase/migrations/20260102_allow_public_reads.sql b/supabase/migrations/20260102_allow_public_reads.sql new file mode 100644 index 0000000..abe51d3 --- /dev/null +++ b/supabase/migrations/20260102_allow_public_reads.sql @@ -0,0 +1,3 @@ +-- Allow anonymous read access to user_profile table +CREATE POLICY "Allow anonymous read access" ON user_profile +FOR SELECT USING (true); \ No newline at end of file