Files
ops-Gazelle/app/Task/PurgeOldTaskHistory.php
2026-05-27 23:35:10 +02:00

13 lines
276 B
PHP

<?php
namespace Gazelle\Task;
class PurgeOldTaskHistory extends \Gazelle\Task {
public function run(): void {
$this->processed = $this->pg()->query("
delete from task_history
where created < now() - interval '6 month'
");
}
}