Can i request to split Artist with delimiter at import?
for example Artist1 & Artist2 & Artist 3 to add all 3 artists to database instead 1 (similar to genre split above).
Not always 1st artist is main artist in album.
Last edited by atagal on Thu Nov 25, 2010 2:50 pm, edited 1 time in total.
The database design is such that the Albums table has only one link to the Artist table.
Moreover the tracks table has one artist and one album ID in it with the relevant relationship and index keys.
So multiple artists would break the entire database model as of now and will need a major update in the logic of the code as well.
hm, how about just duplicate album table with different artist name without any relations?
database size will increase, but maybe can add an option to disable duplication if users dont want it.
whatever if there are unique keys, like path to files, it is impossible.
Last edited by atagal on Fri Nov 26, 2010 9:52 am, edited 1 time in total.