2014-11-14 01:11:57 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$table = new PhabricatorRepositoryAuditRequest();
|
|
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Removing duplicate Audit requests...')."\n";
|
2014-11-14 01:11:57 +01:00
|
|
|
$seen_audit_map = array();
|
|
|
|
foreach (new LiskMigrationIterator($table) as $request) {
|
|
|
|
$commit_phid = $request->getCommitPHID();
|
|
|
|
$auditor_phid = $request->getAuditorPHID();
|
|
|
|
if (isset($seen_audit_map[$commit_phid][$auditor_phid])) {
|
|
|
|
$request->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($seen_audit_map[$commit_phid])) {
|
|
|
|
$seen_audit_map[$commit_phid] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$seen_audit_map[$commit_phid][$auditor_phid] = 1;
|
|
|
|
}
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Done.')."\n";
|