feat: order scheduled task executions

This commit is contained in:
Valentin Schabschneider 2024-08-21 14:53:53 +00:00
parent 69fc4c7f52
commit 9462915c83

View File

@ -26,6 +26,6 @@ public function latest_log(): HasOne
public function executions(): HasMany
{
return $this->hasMany(ScheduledTaskExecution::class);
return $this->hasMany(ScheduledTaskExecution::class)->orderBy('created_at', 'desc');
}
}