case-insensitive order of teams
Some checks failed
CI/CD Pipeline / test (push) Successful in 4m17s
CI/CD Pipeline / deploy (push) Has been cancelled

This commit is contained in:
Philipp Hofer 2025-04-13 23:02:00 +02:00
parent 0995361b15
commit e96474e085

View File

@ -380,7 +380,7 @@ impl Station {
FROM team t
JOIN route_station rs ON t.route_id = rs.route_id
WHERE rs.station_id = ?
ORDER BY t.name;",
ORDER BY LOWER(t.name);",
)
.bind(self.id)
.fetch_all(db)