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 d45b91c commit 01967a3Copy full SHA for 01967a3
example/next-storage/README.md
@@ -33,5 +33,5 @@ alter publication supabase_realtime add table profiles;
33
-- Set up Storage!
34
insert into storage.buckets (id, name) values ('avatars', 'avatars');
35
create policy "Avatar images are publicly accessible." on storage.objects for select using ( bucket_id = 'avatars' );
36
-create policy "Anyone can upload an avatar." on storage.objects for insert using ( bucket_id = 'avatars' );
+create policy "Anyone can upload an avatar." on storage.objects for insert with check ( bucket_id = 'avatars' );
37
```
0 commit comments