@earth-app/collegedb
    Preparing search index...

    Interface CreateIndexOptions

    Options for index creation helpers.

    1.1.4

    interface CreateIndexOptions {
        batchSize?: number;
        ifNotExists?: boolean;
        indexName?: string;
        unique?: boolean;
        where?: string;
    }
    Index
    batchSize?: number

    Number of concurrent shard operations for all-shard variants.

    50
    
    ifNotExists?: boolean

    Include IF NOT EXISTS in generated SQL.

    true
    
    indexName?: string

    Explicit index name. When omitted, a deterministic name is generated.

    unique?: boolean

    Create a unique index.

    where?: string

    Optional partial-index predicate (trusted SQL only).