mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
14 lines
330 B
PHP
14 lines
330 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class PurgeOldTaskHistory extends \Gazelle\Task {
|
|
public function run(): void {
|
|
self::$db->prepared_query('
|
|
DELETE FROM periodic_task_history
|
|
WHERE launch_time < now() - INTERVAL 6 MONTH
|
|
');
|
|
$this->processed = self::$db->affected_rows();
|
|
}
|
|
}
|