Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112955312
20131118.ownerorder.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, May 14, 01:37
Size
837 B
Mime Type
text/x-php
Expires
Fri, May 16, 01:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26145745
Attached To
rPH Phabricator
20131118.ownerorder.php
View Options
<?php
$table
=
new
ManiphestTask
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$task
)
{
$id
=
$task
->
getID
();
echo
"Checking task T{$id}...
\n
"
;
$owner_phid
=
$task
->
getOwnerPHID
();
if
(!
$owner_phid
&&
!
$task
->
getOwnerOrdering
())
{
// No owner and no ordering; we're all set.
continue
;
}
$owner_handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withPHIDs
(
array
(
$owner_phid
))
->
executeOne
();
if
(
$owner_handle
)
{
$value
=
$owner_handle
->
getName
();
}
else
{
$value
=
null
;
}
if
(
$value
!==
$task
->
getOwnerOrdering
())
{
queryfx
(
$conn_w
,
'UPDATE %T SET ownerOrdering = %ns WHERE id = %d'
,
$table
->
getTableName
(),
$value
,
$task
->
getID
());
}
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment