2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00

Fix the date ordering on the package output history page

This commit is contained in:
Christopher Baines 2020-03-24 20:17:00 +00:00
parent f87583016e
commit 96bf658dfc

View file

@ -411,7 +411,7 @@ FROM (
AND last_git_branches.name = $3
AND package_derivations_by_guix_revision_range.system = $5
AND package_derivations_by_guix_revision_range.target = $6
ORDER BY first_datetime DESC, package_version DESC
ORDER BY first_datetime ASC, package_version DESC
) AS data1
WINDOW path_window AS (PARTITION BY path)
) AS data2