© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•6mo ago•
82 replies
patito1009

Privileges revoked from all storage tables after pull of storage schema

I'm trying to sync all my RLS policies of my buckets by running
supabase db pull --schema storage
supabase db pull --schema storage
, but for some reason the generated migration file creates statements that revokes all privileges from all database users from the storage schema. Is this normal? How can I fix it?
revoke delete on table "storage"."buckets" from "anon";

revoke insert on table "storage"."buckets" from "anon";

revoke references on table "storage"."buckets" from "anon";

revoke select on table "storage"."buckets" from "anon";

revoke trigger on table "storage"."buckets" from "anon";

revoke truncate on table "storage"."buckets" from "anon";

revoke update on table "storage"."buckets" from "anon";

revoke delete on table "storage"."buckets" from "authenticated";

revoke insert on table "storage"."buckets" from "authenticated";

revoke references on table "storage"."buckets" from "authenticated";
revoke delete on table "storage"."buckets" from "anon";

revoke insert on table "storage"."buckets" from "anon";

revoke references on table "storage"."buckets" from "anon";

revoke select on table "storage"."buckets" from "anon";

revoke trigger on table "storage"."buckets" from "anon";

revoke truncate on table "storage"."buckets" from "anon";

revoke update on table "storage"."buckets" from "anon";

revoke delete on table "storage"."buckets" from "authenticated";

revoke insert on table "storage"."buckets" from "authenticated";

revoke references on table "storage"."buckets" from "authenticated";

Edit: created an issue on GitHub https://github.com/supabase/cli/issues/4107.
Update: Privileges revoked from all storage tables after pull of storage schema
GitHub
supabase/cli
Supabase CLI. Manage postgres migrations, run Supabase locally, deploy edge functions. Postgres backups. Generating types from your database schema. - supabase/cli
supabase/cli
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements
Next page

Similar Threads

db pull revokes all privileges from auth and storage schema.
SupabaseSSupabase / help-and-questions
6mo ago
Relating Storage Objects to Public Schema Tables
SupabaseSSupabase / help-and-questions
4y ago
Supabase db pull it's dumping all schema
SupabaseSSupabase / help-and-questions
6mo ago
Disable Column Privileges after activating it
SupabaseSSupabase / help-and-questions
13mo ago