We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d91e11e commit 1e593cbCopy full SHA for 1e593cb
supabase-init.sql
@@ -11,3 +11,10 @@ create table logs (
11
received_at timestamp with time zone default timezone('utc'::text, now()) not null,
12
metadata jsonb
13
);
14
+
15
+alter table logs enable row level security;
16
17
+create policy "Logs can be public inserted." on public.logs for insert with check (true);
18
+create policy "Logs can't be public read." on public.logs for select using (false);
19
+create policy "Logs can't be public updated." ON public.logs for update with check (false);
20
+create policy "Logs can't be public deleted." ON public.logs for delete using (false);
0 commit comments