fix(album_releases.psql): update subtext delimiter to be consistent with other delimiters

This commit is contained in:
Cory Dransfeldt 2025-04-11 22:09:58 -07:00
parent 2dc119415d
commit 754f06f516
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ SELECT
'image', CONCAT('/', df.filename_disk),
'url', COALESCE(a.release_link, ar.slug),
'alt', CONCAT(a.name, ' by ', ar.name_string),
'subtext', CONCAT(ar.name_string, ' / ', TO_CHAR(a.release_date, 'Mon FMDD, YYYY'))
'subtext', CONCAT(ar.name_string, ' ', TO_CHAR(a.release_date, 'Mon FMDD, YYYY'))
) AS grid
FROM
albums a