Make the order stable

[MAILPOET-1798]
This commit is contained in:
Pavel Dohnal
2020-02-06 13:43:39 +01:00
committed by Jack Kitterhing
parent 62c5a8cc84
commit 55da20c8ce

View File

@@ -24,6 +24,7 @@ class FormsRepository extends Repository {
->select('f')
->from(FormEntity::class, 'f')
->where('f.deletedAt IS NULL')
->orderBy('f.updatedAt', 'desc')
->getQuery()
->getResult();
}