mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-05 14:28:40 +01:00
8 lines
264 B
SQL
8 lines
264 B
SQL
ALTER TABLE %allsongstables ADD COLUMN effective_albumartist TEXT;
|
|
|
|
UPDATE %allsongstables SET effective_albumartist = albumartist;
|
|
|
|
UPDATE %allsongstables SET effective_albumartist = artist WHERE effective_albumartist = "";
|
|
|
|
UPDATE schema_version SET version=36;
|