Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AddIndexNode

interface AddIndexNode extends OperationNode {
readonly columns?: OperationNode[];
readonly ifNotExists?: boolean;
readonly kind: "AddIndexNode";
readonly name: IdentifierNode;
readonly unique?: boolean;
readonly using?: RawNode;
}
const AddIndexNode: Readonly<{
is(node: OperationNode): node is AddIndexNode;
create(name: string): AddIndexNode;
cloneWith(node: AddIndexNode, props: AddIndexNodeProps): AddIndexNode;
cloneWithColumns(node: AddIndexNode, columns: OperationNode[]): AddIndexNode;
}
>
;

§Extends

§Properties

§
readonly columns?: OperationNode[]
[src]
§
readonly ifNotExists?: boolean
[src]
§
readonly kind: "AddIndexNode"
[src]
§
readonly name: IdentifierNode
[src]
§
readonly unique?: boolean
[src]
§
readonly using?: RawNode
[src]