Options for creating a PostgreSQL enum type (CREATE TYPE name AS ENUM (...))
CREATE TYPE name AS ENUM (...)
Optional
Schema to create the type in
If true, checks whether the type already exists first (via pg_type) and skips creation if so. Postgres has no native CREATE TYPE IF NOT EXISTS.
pg_type
CREATE TYPE IF NOT EXISTS
Options for creating a PostgreSQL enum type (
CREATE TYPE name AS ENUM (...))