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 3fc6b5e commit 0a83cecCopy full SHA for 0a83cec
supabase/migrations/20250603115902_row-level-security-cron.sql
@@ -0,0 +1,24 @@
1
+-- allow authenticated users (cron) to save to the database
2
+
3
+CREATE POLICY "insert_auth"
4
+ ON public.listened
5
+ FOR SELECT
6
+ USING (true);
7
8
9
+ ON public.hooman
10
+ FOR INSERT
11
+ TO authenticated
12
+ WITH CHECK (true);
13
14
15
+ ON public.hooman_artist
16
17
18
19
20
21
+ ON public.artist
22
23
24
0 commit comments