Page MenuHomec4science

20131217.pushlogphid.2.mig.php
No OneTemporary

File Metadata

Created
Mon, Jan 6, 09:49

20131217.pushlogphid.2.mig.php

<?php
$table = new PhabricatorRepositoryPushLog();
$conn_w = $table->establishConnection('w');
echo "Assigning PHIDs to push logs...\n";
$logs = new LiskMigrationIterator($table);
foreach ($logs as $log) {
$id = $log->getID();
echo "Updating {$id}...\n";
queryfx(
$conn_w,
'UPDATE %T SET phid = %s WHERE id = %d',
$table->getTableName(),
$log->generatePHID(),
$id);
}
echo "Done.\n";

Event Timeline