'enum' equivalent?

Dan Lyke <danlyke@flutterby.com>

From: Dan Lyke <danlyke@flutterby.com>
To: Steve Leibel <stevel@bluetuna.com>
Cc: pgsql-general@postgresql.org
Date: 2001-01-22T18:50:32Z
Lists: pgsql-hackers, pgsql-general
Steve Leibel writes:
> I'm converting a mysql database to postgres.  Is there an equivalent 
> for the enum data type?

No, but you can put the enum data in a separate table and join
them. This also makes the operation of adding entries to the enum list
better defined.

Dan