DROP DOMAIN
DROP DOMAIN — remove a domain
Synopsis
DROP DOMAIN [ IF EXISTS ]name [, ...] [ CASCADE | RESTRICT ]Description
DROP DOMAIN removes a domain. Only the owner of a domain can remove it.
Parameters
IF EXISTSDo not throw an error if the domain does not exist. A notice is issued in this case.
nameThe name (optionally schema-qualified) of an existing domain.
CASCADEAutomatically drop objects that depend on the domain (such as table columns), and in turn all objects that depend on those objects (seeSection 5.13).
RESTRICTRefuse to drop the domain if any objects depend on it. This is the default.
Examples
To remove the domainbox:
DROP DOMAIN box;
Compatibility
This command conforms to the SQL standard, except for theIF EXISTS option, which is aPostgres Pro extension.