Schema with no table (only if one table in schema)
Answered
1. create schema
2. create table
SET SCHEMA 'public';
CREATE TABLE abcd.log
(
id BIGINT DEFAULT nextval('id_seq' :: REGCLASS),
created TIMESTAMP DEFAULT now(),
result INTEGER,
method VARCHAR,
url VARCHAR,
input_string VARCHAR,
output_string VARCHAR,
extra_data VARCHAR,
client VARCHAR
);
SET SCHEMA 'abcd';
CREATE INDEX log__created
ON log (created);
as visible below only log table columns are visible but the log table name not:
Please sign in to leave a comment.

@Wl4kids

Could you email full IDE logs to me vasily.chernov@jetbrains.com .
Since I can't reproduce the issue.
Also, it'll be handy to get a screenshot of your database tree view settings. e.g.: