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

    Interface IndexColumnDefinition

    Column specification for index creation helpers.

    1.1.4

    interface IndexColumnDefinition {
        collate?: string;
        name: string;
        order?: "ASC" | "DESC";
    }
    Index
    collate?: string

    Optional collation (e.g., NOCASE).

    name: string

    Column name to include in the index.

    order?: "ASC" | "DESC"

    Optional sort direction for this column.