prorm API Reference
    Preparing search index...

    Interface DropTableOptions

    Options for DROP TABLE, including ifExists and whether to cascade to dependent objects.

    interface DropTableOptions {
        ifExists?: boolean;
        cascade?: boolean;
    }
    Index
    ifExists?: boolean
    cascade?: boolean