mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-09-26 13:13:39 -04:00
13 lines
276 B
PHP
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'
|
|
");
|
|
}
|
|
}
|