kysely
    Preparing search index...

    Interface OnConflictNode

    interface OnConflictNode {
        columns?: readonly ColumnNode[];
        constraint?: IdentifierNode;
        doNothing?: boolean;
        indexExpression?: OperationNode;
        indexWhere?: WhereNode;
        kind: "OnConflictNode";
        updates?: readonly ColumnUpdateNode[];
        updateWhere?: WhereNode;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columns?: readonly ColumnNode[]
    constraint?: IdentifierNode
    doNothing?: boolean
    indexExpression?: OperationNode
    indexWhere?: WhereNode
    kind: "OnConflictNode"
    updates?: readonly ColumnUpdateNode[]
    updateWhere?: WhereNode