mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
24 lines
517 B
PHP
24 lines
517 B
PHP
|
<?php
|
||
|
|
||
|
echo "Adding names to Drydock blueprints.\n";
|
||
|
|
||
|
$table = new DrydockBlueprint();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
$iterator = new LiskMigrationIterator($table);
|
||
|
foreach ($iterator as $blueprint) {
|
||
|
$id = $blueprint->getID();
|
||
|
|
||
|
echo "Populating blueprint {$id}...\n";
|
||
|
|
||
|
if (!strlen($blueprint->getBlueprintName())) {
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'UPDATE %T SET blueprintName = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
pht('Blueprint %s', $id),
|
||
|
$id);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|