mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
8 lines
244 B
SQL
8 lines
244 B
SQL
ALTER TABLE %allsongstables ADD COLUMN effective_albumartist TEXT;
|
|
|
|
UPDATE songs SET effective_albumartist = albumartist;
|
|
|
|
UPDATE songs SET effective_albumartist = artist WHERE effective_albumartist = "";
|
|
|
|
UPDATE schema_version SET version=36;
|