Force order of exported tasks

This commit is contained in:
Frederic Guillot 2016-09-03 21:48:36 -04:00
parent daa076eea7
commit 8ee699c8bf
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
1 changed files with 1 additions and 0 deletions

View File

@ -95,6 +95,7 @@ class TaskExport extends Base
->gte(TaskModel::TABLE . '.date_creation', $from)
->lte(TaskModel::TABLE . '.date_creation', $to)
->eq(TaskModel::TABLE . '.project_id', $project_id)
->asc(TaskModel::TABLE.'.id')
->findAll();
}