Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93587786
20150725.badges.mailkey.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
Fri, Nov 29, 23:26
Size
415 B
Mime Type
text/x-php
Expires
Sun, Dec 1, 23:26 (2 d)
Engine
blob
Format
Raw Data
Handle
22671229
Attached To
rPH Phabricator
20150725.badges.mailkey.2.php
View Options
<?php
$table
=
new
PhabricatorBadgesBadge
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$iterator
=
new
LiskMigrationIterator
(
$table
);
foreach
(
$iterator
as
$badge
)
{
$id
=
$badge
->
getID
();
echo
pht
(
'Adding mail key for badge %d...'
,
$id
);
echo
"
\n
"
;
queryfx
(
$conn_w
,
'UPDATE %T SET mailKey = %s WHERE id = %d'
,
$table
->
getTableName
(),
Filesystem
::
readRandomCharacters
(
20
),
$id
);
}
Event Timeline
Log In to Comment