mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
32 lines
786 B
PHP
32 lines
786 B
PHP
<?php
|
|
|
|
$table = new HeraldCondition();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
echo pht(
|
|
"Migrating Herald conditions of type Herald rule from IDs to PHIDs...\n");
|
|
foreach (new LiskMigrationIterator($table) as $condition) {
|
|
if ($condition->getFieldName() != HeraldAdapter::FIELD_RULE) {
|
|
continue;
|
|
}
|
|
|
|
$value = $condition->getValue();
|
|
if (!is_numeric($value)) {
|
|
continue;
|
|
}
|
|
$id = $condition->getID();
|
|
echo pht('Updating condition %s...', $id)."\n";
|
|
|
|
$rule = id(new HeraldRuleQuery())
|
|
->setViewer(PhabricatorUser::getOmnipotentUser())
|
|
->withIDs(array($value))
|
|
->executeOne();
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET value = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
json_encode($rule->getPHID()),
|
|
$id);
|
|
}
|
|
echo pht('Done.')."\n";
|