interface DropSchemaNode {
    cascade?: boolean;
    ifExists?: boolean;
    kind: "DropSchemaNode";
    schema: kysely.IdentifierNode;
}

Hierarchy (view full)

Properties

cascade?: boolean
ifExists?: boolean
kind: "DropSchemaNode"