Page MenuHomePhorge

20140210.herald.rule-condition-mig.php
No OneTemporary

Size
786 B
Referenced Files
None
Subscribers
None

20140210.herald.rule-condition-mig.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";

File Metadata

Mime Type
text/x-php
Expires
Tue, Jun 17, 10:28 PM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
224455
Default Alt Text
20140210.herald.rule-condition-mig.php (786 B)

Event Timeline