case-insensitive order of teams
This commit is contained in:
parent
0995361b15
commit
e96474e085
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user