prorm API Reference
    Preparing search index...

    Interface DropDomainOptions

    Options for dropping a PostgreSQL domain (DROP DOMAIN ...)

    interface DropDomainOptions {
        ifExists?: boolean;
        cascade?: boolean;
        schema?: string;
    }
    Index
    ifExists?: boolean

    If true, uses DROP DOMAIN IF EXISTS

    cascade?: boolean

    If true, uses CASCADE to drop dependent objects

    schema?: string

    Schema the domain lives in