prorm API Reference
    Preparing search index...

    Interface DropMaterializedViewOptions

    Options for dropping a materialized view

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

    If true, does not throw error if materialized view does not exist

    cascade?: boolean

    If true, also drops dependent materialized views (CASCADE)

    schema?: string

    Schema name for the materialized view