mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
25 lines
490 B
PHP
25 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(HeraldPHIDTypeRule::TYPECONST),
|
||
|
$rule->getID());
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|