CREATE TYPE "AccountState" AS ENUM ( 'active', 'suspended', 'banned' ); ALTER TABLE accounts ADD COLUMN state "AccountState" NOT NULL DEFAULT 'active';