Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121913725
20130711.pholioimageobsolete.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
Mon, Jul 14, 19:25
Size
433 B
Mime Type
text/x-php
Expires
Wed, Jul 16, 19:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27362170
Attached To
rPH Phabricator
20130711.pholioimageobsolete.php
View Options
<?php
echo
'Giving pholio images PHIDs'
;
$table
=
new
PholioImage
();
$table
->
openTransaction
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$image
)
{
if
(
$image
->
getPHID
())
{
continue
;
}
echo
'.'
;
queryfx
(
$image
->
establishConnection
(
'w'
),
'UPDATE %T SET phid = %s WHERE id = %d'
,
$image
->
getTableName
(),
$image
->
generatePHID
(),
$image
->
getID
());
}
$table
->
saveTransaction
();
echo
"
\n
Done.
\n
"
;
Event Timeline
Log In to Comment