Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106123630
20140210.herald.rule-condition-mig.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, Mar 22, 18:10
Size
760 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 18:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25104149
Attached To
rPH Phabricator
20140210.herald.rule-condition-mig.php
View Options
<?php
$table
=
new
HeraldCondition
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
"Migrating Herald conditions of type Herald rule from IDs to PHIDs...
\n
"
;
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$condition
)
{
if
(
$condition
->
getFieldName
()
!=
HeraldAdapter
::
FIELD_RULE
)
{
continue
;
}
$value
=
$condition
->
getValue
();
if
(!
is_numeric
(
$value
))
{
continue
;
}
$id
=
$condition
->
getID
();
echo
"Updating condition {$id}...
\n
"
;
$rule
=
id
(
new
HeraldRuleQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withIDs
(
array
(
$value
))
->
executeOne
();
queryfx
(
$conn_w
,
'UPDATE %T SET value = %s WHERE id = %d'
,
$table
->
getTableName
(),
json_encode
(
$rule
->
getPHID
()),
$id
);
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment