Don't update the Jamendo tables for the effective_albumartist change - it's far too slow

This commit is contained in:
David Sansome 2011-11-29 10:38:07 +00:00
parent 8d5ef62256
commit f0923857a1

View File

@ -1,7 +1,7 @@
ALTER TABLE %allsongstables ADD COLUMN effective_albumartist TEXT; ALTER TABLE %allsongstables ADD COLUMN effective_albumartist TEXT;
UPDATE %allsongstables SET effective_albumartist = albumartist; UPDATE songs SET effective_albumartist = albumartist;
UPDATE %allsongstables SET effective_albumartist = artist WHERE effective_albumartist = ""; UPDATE songs SET effective_albumartist = artist WHERE effective_albumartist = "";
UPDATE schema_version SET version=36; UPDATE schema_version SET version=36;