nicer sort @ boat reservation
CI/CD Pipeline / test (push) Successful in 33m39s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
2026-06-04 18:25:55 +02:00
parent 0e1973fbac
commit 9dd65a859f
4 changed files with 17 additions and 7 deletions
+2 -2
View File
@@ -261,8 +261,8 @@ WHERE
b.external = false
AND b.location_id = (SELECT id FROM location WHERE name = 'Linz')
AND b.deleted = false
ORDER BY
b.name DESC;
ORDER BY
b.amount_seats ASC, b.name ASC;
"
)
.fetch_all(db)