You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It would be super helpful to add a supabase cli command to list policies for all your tables, or by table.
Would be especially useful when promoting AI models to give them more context on how you db and schema is set up.
Describe the solution you'd like supabase policies list tableA returns a list of your policies on the table
Describe alternatives you've considered
You could use SQL to get it. Something like:
SELECT schemaname, tablename, policyname, roles, cmd, qual
FROM pg_policies
WHERE schemaname = 'public' and tablename = 'tableA'
ORDER BY tablename, policyname;
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
It would be super helpful to add a supabase cli command to list policies for all your tables, or by table.
Would be especially useful when promoting AI models to give them more context on how you db and schema is set up.
Describe the solution you'd like
supabase policies list tableA
returns a list of your policies on the tableDescribe alternatives you've considered
You could use SQL to get it. Something like:
The text was updated successfully, but these errors were encountered: