diff --git a/back/services/cron.ts b/back/services/cron.ts index ce4bec20..6f24484c 100644 --- a/back/services/cron.ts +++ b/back/services/cron.ts @@ -165,7 +165,7 @@ export default class CronService { try { const result = await CrontabModel.findAll({ where: query, - order: [['updatedAt', 'DESC']], + order: [['createdAt', 'DESC']], }); return result as any; } catch (error) {