kysely
    Preparing search index...

    Interface DropIndexNode

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

    Hierarchy (View Summary)

    Index

    Properties

    cascade?: boolean
    ifExists?: boolean
    kind: "DropIndexNode"
    table?: TableNode