Sort open bounties only by updated timestamp

This commit is contained in:
Teemu Patja 2017-10-30 22:19:01 +02:00
parent 266531956b
commit dbc85fe8be
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ WHERE
r.repo_id = i.repo_id
AND i.confirm_hash is null
AND i.is_open = true
ORDER BY value_usd desc, updated desc;
ORDER BY updated desc;