mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
22 lines
457 B
PHP
22 lines
457 B
PHP
|
<?php
|
||
|
|
||
|
final class PeopleUserLogGarbageCollector
|
||
|
extends PhabricatorGarbageCollector {
|
||
|
|
||
|
public function collectGarbage() {
|
||
|
$ttl = phutil_units('180 days in seconds');
|
||
|
|
||
|
$table = new PhabricatorUserLog();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100',
|
||
|
$table->getTableName(),
|
||
|
time() - $ttl);
|
||
|
|
||
|
return ($conn_w->getAffectedRows() == 100);
|
||
|
}
|
||
|
|
||
|
}
|