Is there a graphical way to create/manipulate/view special database types in PgAdmin?
For example, in PostgreSQL we have:
CREATE TYPE compfoo AS (f1 int, f2 text);
I’ve noticed pgAdmin almost shows everything graphically, such as triggers, views, functions, and of course tables, but I couldn’t find the types that I created.
You just need to enable viewing types through menu File → Options… → Browser and checking
Types:According to pgAdmin’s documentation: