« Return to Thread: CREATE TYPE and pgAdmin III

CREATE TYPE and pgAdmin III

by dvanatta :: Rate this Message:

Reply to Author | View in Thread

I realize this is a pgAdmin question but I figure most of you use it and could help.  I've executed the following code:

CREATE TYPE cart_saved_product AS
(
  product_id INTEGER,
  name       VARCHAR(50),
  price      NUMERIC(10, 2)
);

it created successfully but I do not see it in the pgAdmin object browser.

Where are all the types I've created in the object browser?

Thanks.

 « Return to Thread: CREATE TYPE and pgAdmin III