mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 10:48:33 +01:00
a6d3b48231
The transaction handling while upgrading the database schema had to be revised. Furthermore some QSqlQuery statements needed to be finished properly. Fixes issue 2556
25 lines
838 B
SQL
25 lines
838 B
SQL
CREATE VIRTUAL TABLE playlist_items_fts USING fts3(
|
|
ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsgenre, ftscomment,
|
|
tokenize=unicode
|
|
);
|
|
|
|
DELETE FROM %allsongstables_fts;
|
|
|
|
DROP TABLE %allsongstables_fts;
|
|
|
|
ALTER TABLE %allsongstables ADD COLUMN performer TEXT;
|
|
|
|
ALTER TABLE %allsongstables ADD COLUMN grouping TEXT;
|
|
|
|
CREATE VIRTUAL TABLE %allsongstables_fts USING fts3(
|
|
ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsperformer, ftsgrouping, ftsgenre, ftscomment,
|
|
tokenize=unicode
|
|
);
|
|
|
|
INSERT INTO %allsongstables_fts (ROWID, ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsperformer, ftsgrouping, ftsgenre, ftscomment)
|
|
SELECT ROWID, title, album, artist, albumartist, composer, performer, grouping, genre, comment
|
|
FROM %allsongstables;
|
|
|
|
UPDATE schema_version SET version=45;
|
|
|