Page MenuHomec4science

20160531.pref.07.phidval.php
No OneTemporary

File Metadata

Created
Mon, Jul 15, 08:52

20160531.pref.07.phidval.php

<?php
$table = new PhabricatorUserPreferences();
$conn_w = $table->establishConnection('w');
foreach (new LiskMigrationIterator($table) as $row) {
if ($row->getPHID() !== '') {
continue;
}
queryfx(
$conn_w,
'UPDATE %T SET phid = %s WHERE id = %d',
$table->getTableName(),
$table->generatePHID(),
$row->getID());
}

Event Timeline