mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
97a8700e45
Summary: Ref T5655. Rename `PhabricatorPHIDType` subclasses for clarity (see discussion in D9839). I'm not too keen on some of the resulting class names, so feel free to suggest alternatives. Test Plan: Ran unit tests. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, hach-que Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9986
24 lines
490 B
PHP
24 lines
490 B
PHP
<?php
|
|
|
|
$table = new HeraldRule();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
echo "Assigning PHIDs to Herald Rules...\n";
|
|
|
|
foreach (new LiskMigrationIterator(new HeraldRule()) as $rule) {
|
|
$id = $rule->getID();
|
|
echo "Rule {$id}.\n";
|
|
|
|
if ($rule->getPHID()) {
|
|
continue;
|
|
}
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET phid = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
PhabricatorPHID::generateNewPHID(HeraldRulePHIDType::TYPECONST),
|
|
$rule->getID());
|
|
}
|
|
|
|
echo "Done.\n";
|