how to get rid of the schema level in tree with postgres
the database explorer is how I get around things - and so I want it as clean as possible. What I really want is my own grouping at the top - eg (local/system testing/user testing/prod/etc) - but then levels where there never exists a level with only one child. I can _almost_ get there - with a particular postgres database I end up with
- local (I have several)
- the database (I have many)
- the schema (always public)
- table 1
- table 2
- …
- the schema (always public)
- the database (I have many)
where clearly - the “schema” level has no conceivable value being displayed and I want it gone - but I can't find any way of doing it - here's my view options:
is there any way of fixing it?
Please sign in to leave a comment.
Just to be clear on your concern: you want to remove the schema level in the database tree by leaving only the database, and table / other granular object levels?