Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

feat: add logs policy #864

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions supabase/migrations/20231018095623_add_logs_policy.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CREATE POLICY "Enable read access for all users" ON "public"."logs"
AS PERMISSIVE FOR SELECT
TO public
USING (true);
Loading