Add missing subsonic fts songs table

This commit is contained in:
Jonas Kvinge 2019-06-18 14:41:48 +02:00
parent 1d67b623e0
commit beb3ab463f
1 changed files with 15 additions and 0 deletions

View File

@ -455,6 +455,21 @@ CREATE VIRTUAL TABLE IF NOT EXISTS tidal_songs_fts USING fts3(
);
CREATE VIRTUAL TABLE IF NOT EXISTS subsonic_songs_fts USING fts3(
ftstitle,
ftsalbum,
ftsartist,
ftsalbumartist,
ftscomposer,
ftsperformer,
ftsgrouping,
ftsgenre,
ftscomment,
tokenize=unicode
);
CREATE VIRTUAL TABLE IF NOT EXISTS playlist_items_fts_ USING fts3(
ftstitle,