Hi,
I'm new to postgresql, but do have some experience in MySQL.
I wanted to create a new enum type and used the command:
CREATE TYPE gender AS ENUM ('male', 'female', 'unknown')
Which returned success.
When I create a new table I can assign the gender type to a column.
But is it possible to see (and manage) the types I created?
I use pgAdmin III.
Thanks.
Mark