prorm API Reference
    Preparing search index...

    Interface DropTriggerOptions

    Options for dropping a trigger

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

    If true, does not throw error if trigger does not exist

    cascade?: boolean

    If true, also drops dependent objects (CASCADE)

    schema?: string

    Schema (for PostgreSQL)