mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
18 lines
352 B
PHP
18 lines
352 B
PHP
|
<?php
|
||
|
|
||
|
$table = new PhabricatorAuthSSHKey();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
|
||
|
foreach (new LiskMigrationIterator($table) as $cursor) {
|
||
|
if (strlen($cursor->getPHID())) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'UPDATE %T SET phid = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
$table->generatePHID(),
|
||
|
$cursor->getID());
|
||
|
}
|