Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99016408
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
Sat, Jan 18, 12:05
Size
433 B
Mime Type
text/x-php
Expires
Mon, Jan 20, 12:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23687812
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