kysely
    Preparing search index...

    Interface CreateIndexNode

    interface CreateIndexNode {
        columns?: OperationNode[];
        ifNotExists?: boolean;
        kind: "CreateIndexNode";
        name: IdentifierNode;
        nullsNotDistinct?: boolean;
        table?: TableNode;
        unique?: boolean;
        using?: RawNode;
        where?: WhereNode;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columns?: OperationNode[]
    ifNotExists?: boolean
    kind: "CreateIndexNode"
    nullsNotDistinct?: boolean
    table?: TableNode
    unique?: boolean
    using?: RawNode
    where?: WhereNode