prorm API Reference
    Preparing search index...

    Interface DropSequenceOptions

    Options for dropping a sequence

    interface DropSequenceOptions {
        ifExists?: boolean;
        cascade?: boolean;
        schema?: string;
    }
    Index
    ifExists?: boolean

    If true, does not throw error if sequence does not exist

    cascade?: boolean

    If true, also drops dependent objects (CASCADE)

    schema?: string

    Schema (for PostgreSQL)