mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
29 lines
685 B
PHP
29 lines
685 B
PHP
|
<?php
|
||
|
|
||
|
$mock_table = new PholioMock();
|
||
|
$mock_conn = $mock_table->establishConnection('w');
|
||
|
|
||
|
$properties_table = new PhabricatorMetaMTAMailProperties();
|
||
|
$conn = $properties_table->establishConnection('w');
|
||
|
|
||
|
$iterator = new LiskRawMigrationIterator(
|
||
|
$mock_conn,
|
||
|
$mock_table->getTableName());
|
||
|
|
||
|
foreach ($iterator as $row) {
|
||
|
queryfx(
|
||
|
$conn,
|
||
|
'INSERT IGNORE INTO %T
|
||
|
(objectPHID, mailProperties, dateCreated, dateModified)
|
||
|
VALUES
|
||
|
(%s, %s, %d, %d)',
|
||
|
$properties_table->getTableName(),
|
||
|
$row['phid'],
|
||
|
phutil_json_encode(
|
||
|
array(
|
||
|
'mailKey' => $row['mailKey'],
|
||
|
)),
|
||
|
PhabricatorTime::getNow(),
|
||
|
PhabricatorTime::getNow());
|
||
|
}
|