mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-28 10:06:47 +00:00
4 lines
197 B
SQL
4 lines
197 B
SQL
-- Unicode-lowercased display name for indexed album-credit matching.
|
|
ALTER TABLE artist ADD COLUMN name_fold TEXT;
|
|
CREATE INDEX IF NOT EXISTS idx_artist_name_fold ON artist(server_id, name_fold);
|