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