Database Viewer: tables in different schemas in same list of tables
Most database systems let you organize tables in different schemas in the same database. So for example:
foo.Person
foo.Book
bar.order
bar.whatever
The database viewer in IntelliJ (using 15 now) insists on showing these seperately in the tree i.e.
->foo
-->Person
-->Book
->bar
-->order
-->whatever
Is there a way to get it to show all the tables in the same database in the same tree without organize by schema? This is the only thing keeping me from giving up DB Visualizer and just using IntelliJ's DB functionality. (db viz ignores schema and just lists all the tables in one tree).
Please sign in to leave a comment.
Please submit a request at http://youtrack.jetbrains.com/issues/IDEA (related request: https://youtrack.jetbrains.com/issue/IDEA-136592).