Peter Serwylo d3f9cfbdfa Remove need for temorary b-tree for order by in most cases by introducing two indexes.
The fact that sqlite chose to do a "FULL TABLE SCAN" right off the bat when showing a list
of apps results in it having to do extra work at the end of the query to sort. If the scan
can be utilise an index, then the sorting is already done and a b-tree need not be constructed.
Thus, this introduces indexes for both the `name` column (used to sort most lists of apps)
and the `added` column (used to figure out the `Whats New` apps).
2016-07-18 22:20:36 +10:00
..
2016-07-06 20:22:02 +01:00