Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F957822
20180828.phriction.04.migrate.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
20180828.phriction.04.migrate.php
View Options
<?php
// Update the PhrictionDocument and PhrictionContent tables to refer to one
// another by PHID instead of by ID.
$document_table
=
new
PhrictionDocument
();
$content_table
=
new
PhrictionContent
();
$conn
=
$document_table
->
establishConnection
(
'w'
);
$document_iterator
=
new
LiskRawMigrationIterator
(
$conn
,
$document_table
->
getTableName
());
foreach
(
$document_iterator
as
$row
)
{
$content_id
=
$row
[
'contentID'
];
$content_row
=
queryfx_one
(
$conn
,
'SELECT phid, dateCreated FROM %T WHERE id = %d'
,
$content_table
->
getTableName
(),
$content_id
);
if
(!
$content_row
)
{
continue
;
}
queryfx
(
$conn
,
'UPDATE %T SET contentPHID = %s, editedEpoch = %d WHERE id = %d'
,
$document_table
->
getTableName
(),
$content_row
[
'phid'
],
$content_row
[
'dateCreated'
],
$row
[
'id'
]);
}
$content_iterator
=
new
LiskRawMigrationIterator
(
$conn
,
$content_table
->
getTableName
());
foreach
(
$content_iterator
as
$row
)
{
$document_id
=
$row
[
'documentID'
];
$document_row
=
queryfx_one
(
$conn
,
'SELECT phid FROM %T WHERE id = %d'
,
$document_table
->
getTableName
(),
$document_id
);
if
(!
$document_row
)
{
continue
;
}
queryfx
(
$conn
,
'UPDATE %T SET documentPHID = %s WHERE id = %d'
,
$content_table
->
getTableName
(),
$document_row
[
'phid'
],
$row
[
'id'
]);
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 7:49 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227387
Default Alt Text
20180828.phriction.04.migrate.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment