Interface TableIndexOptions

Options available for text and ascii indexes

interface TableIndexOptions {
    ascii?: boolean;
    caseSensitive?: boolean;
    normalize?: boolean;
}

Properties

ascii?: boolean

Whether to convert non-ASCII characters to their US-ASCII equivalent before indexing.

Defaults to false.

caseSensitive?: boolean

If false, enables searches on the column to be case-insensitive.

Defaults to true.

normalize?: boolean

Whether to normalize Unicode characters and diacritics before indexing.

Defaults to false.