schema: add fulltext indexes for mysql to support af_psql_trgm and possibly future fulltext search

This commit is contained in:
Andrew Dolgov
2022-06-19 21:53:57 +03:00
parent 9428e2c571
commit 6d98cc6c80
4 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
create fulltext index if not exists ttrss_entries_title_search_idx on ttrss_entries(title);
create fulltext index if not exists ttrss_entries_combined_search_idx on ttrss_entries(title, content);