SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface PostgresTriggerDefinition

    interface PostgresTriggerDefinition {
        name: string;
        table: string;
        timing: PostgresTriggerTiming;
        event: PostgresTriggerEvent | PostgresTriggerEvent[];
        functionName: string;
        functionArgs?: PostgresTriggerArgument[];
        updateOf?: string[];
        when?: string;
        forEachRow?: boolean;
        ifNotExists?: boolean;
        replace?: boolean;
    }
    Index

    Properties

    name: string
    table: string
    functionName: string
    functionArgs?: PostgresTriggerArgument[]
    updateOf?: string[]
    when?: string
    forEachRow?: boolean
    ifNotExists?: boolean
    replace?: boolean