mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 02:42:40 +01:00
36 lines
735 B
PHP
36 lines
735 B
PHP
|
<?php
|
||
|
|
||
|
echo "Cleaning up old Herald rule applied rows...\n";
|
||
|
|
||
|
$rules = id(new HeraldRule())->loadAll();
|
||
|
foreach ($rules as $key => $rule) {
|
||
|
$first_policy = HeraldRepetitionPolicyConfig::toInt(
|
||
|
HeraldRepetitionPolicyConfig::FIRST);
|
||
|
if ($rule->getRepetitionPolicy() != $first_policy) {
|
||
|
unset($rules[$key]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$conn_w = id(new HeraldRule())->establishConnection('w');
|
||
|
|
||
|
$clause = '';
|
||
|
if ($rules) {
|
||
|
$clause = qsprintf(
|
||
|
$conn_w,
|
||
|
'WHERE ruleID NOT IN (%Ld)',
|
||
|
mpull($rules, 'getID'));
|
||
|
}
|
||
|
|
||
|
echo "This may take a moment";
|
||
|
do {
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'DELETE FROM %T %Q LIMIT 1000',
|
||
|
HeraldRule::TABLE_RULE_APPLIED,
|
||
|
$clause);
|
||
|
echo ".";
|
||
|
} while ($conn_w->getAffectedRows());
|
||
|
|
||
|
echo "\n";
|
||
|
echo "Done.\n";
|