1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00

strategies should be order after createdAt ASC

This commit is contained in:
ivaosthu 2014-11-29 11:51:57 +01:00 committed by Ivar Conradi Østhus
parent bc4b80c661
commit 03c84c086c

View File

@ -16,7 +16,7 @@ function getStrategies() {
return knex
.select(STRATEGY_COLUMNS)
.from('strategies')
.orderBy('created_at', 'desc')
.orderBy('created_at', 'asc')
.map(rowToStrategy);
}