mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
962aca664f
Summary: Ref T2015. Adds human-readable names to Drydock blueprints. Also the new patches stuff is so much nicer. Test Plan: Edited, created, and reviewed migrated blueprints. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2015 Differential Revision: https://secure.phabricator.com/D7918
23 lines
517 B
PHP
23 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";
|