prorm API Reference
    Preparing search index...

    Interface FullTextIndexOptions

    A full-text index: the columns it covers, the language configuration, and any per-column weighting the engine supports.

    interface FullTextIndexOptions {
        name: string;
        table: string;
        columns: string[];
        language?: string;
    }
    Index
    name: string

    Index name

    table: string

    Table to index

    columns: string[]

    Columns to include in the index

    language?: string

    Text search configuration (PostgreSQL), e.g. 'english'