Files
yellowjacket/backend/database/sql/schemas/search_index.sql
T

9 lines
173 B
SQL

CREATE VIRTUAL TABLE IF NOT EXISTS search_index USING fts5(
file_path,
title,
artist,
album,
content='',
tokenize='unicode61 remove_diacritics 2'
);