interface DropIndexNode {
    cascade?: boolean;
    ifExists?: boolean;
    kind: "DropIndexNode";
    name: SchemableIdentifierNode;
    table?: kysely.TableNode;
}

Hierarchy (view full)

Properties

cascade?: boolean
ifExists?: boolean
kind: "DropIndexNode"
name: SchemableIdentifierNode