From 536f345268428c317d9175bf0fc16ff30ff4bc9b Mon Sep 17 00:00:00 2001 From: Jim Broadus Date: Thu, 4 Jun 2020 23:54:14 -0700 Subject: [PATCH] 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. --- data/schema/jamendo.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/schema/jamendo.sql b/data/schema/jamendo.sql index 97467c725..d7f0d844d 100644 --- a/data/schema/jamendo.sql +++ b/data/schema/jamendo.sql @@ -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 );