prorm API Reference
    Preparing search index...

    Interface ReindexOptions

    interface ReindexOptions {
        scope?: "table" | "schema" | "index" | "database";
        concurrently?: boolean;
    }
    Index
    scope?: "table" | "schema" | "index" | "database"

    What to rebuild: one index, a whole table's indexes, or a schema.

    'table'
    
    concurrently?: boolean

    Rebuild without blocking writes. PostgreSQL 12+.