Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108379609
20140108.ddbpname.2.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 16, 08:54
Size
517 B
Mime Type
text/x-php
Expires
Fri, Apr 18, 08:54 (2 d)
Engine
blob
Format
Raw Data
Handle
25523710
Attached To
rPH Phabricator
20140108.ddbpname.2.php
View Options
<?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
"
;
Event Timeline
Log In to Comment