database: Add ftsyear to jamendo.songs_fts

A previous change added ftsyear to all songs_fts tables, but the base jamendo
schema, which is used when recreating the database, was not updated. This
resulted in thousands of sql errors when reloading the catalog.
This commit is contained in:
Jim Broadus 2020-06-04 23:54:14 -07:00 committed by John Maguire
parent 48ae27b4ad
commit 536f345268
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ CREATE TABLE jamendo.songs (
);
CREATE VIRTUAL TABLE jamendo.songs_fts USING fts3(
ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsperformer, ftsgrouping, ftsgenre, ftscomment,
ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsperformer, ftsgrouping, ftsgenre, ftscomment, ftsyear,
tokenize=unicode
);