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

DropIndexNode

interface DropIndexNode extends OperationNode {
readonly cascade?: boolean;
readonly ifExists?: boolean;
readonly kind: "DropIndexNode";
readonly name: SchemableIdentifierNode;
readonly table?: TableNode;
}
const DropIndexNode: Readonly<{
is(node: OperationNode): node is DropIndexNode;
create(name: string, params?: DropIndexNodeProps): DropIndexNode;
cloneWith(dropIndex: DropIndexNode, props: DropIndexNodeProps): DropIndexNode;
}
>
;

§Extends

§Properties

§
readonly cascade?: boolean
[src]
§
readonly ifExists?: boolean
[src]
§
readonly kind: "DropIndexNode"
[src]
§
readonly table?: TableNode
[src]