Index builds on stop time

This is necessary to make the /all page fast, since it sorts builds on
descending stop time.
This commit is contained in:
Eelco Dolstra
2013-08-12 20:16:28 +02:00
parent 452c8e36d1
commit 84acccb3ea
2 changed files with 2 additions and 0 deletions

1
src/sql/upgrade-18.sql Normal file
View File

@ -0,0 +1 @@
create index IndexBuildsOnFinishedStopTime on Builds(finished, stoptime DESC);