added order by clause for display purposes
parent
159ce1c06b
commit
f0229319d5
|
@ -9,3 +9,5 @@ FROM
|
|||
INNER JOIN geography.timezone t ON c.timezone_id = t.id
|
||||
WHERE
|
||||
region_id = %(region_id)s
|
||||
ORDER BY
|
||||
c.name
|
||||
|
|
|
@ -4,3 +4,5 @@ SELECT
|
|||
name
|
||||
FROM
|
||||
geography.country
|
||||
ORDER BY
|
||||
name
|
||||
|
|
|
@ -6,3 +6,5 @@ FROM
|
|||
geography.region
|
||||
WHERE
|
||||
country_id = %(country_id)s
|
||||
ORDER BY
|
||||
name
|
||||
|
|
|
@ -7,3 +7,5 @@ FROM
|
|||
geography.timezone
|
||||
WHERE
|
||||
country_id = %(country_id)s
|
||||
ORDER BY
|
||||
name
|
||||
|
|
Loading…
Reference in New Issue