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