mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
40d5d5c984
Summary: Ref T13197. Ref T13065. This continues the gradual purge of dedicated "mailKey" columns in favor of shared infrastructure. Test Plan: - Ran migration. - Visually inspected database. - Grepped for `mailKey`. - Added some comments, saw the daemons generate corresponding mail. Reviewers: amckinley Reviewed By: amckinley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13197, T13065 Differential Revision: https://secure.phabricator.com/D19670
26 lines
744 B
PHP
26 lines
744 B
PHP
<?php
|
|
|
|
$commit_table = new PhabricatorRepositoryCommit();
|
|
$commit_conn = $commit_table->establishConnection('w');
|
|
$commit_name = $commit_table->getTableName();
|
|
|
|
$properties_table = new PhabricatorMetaMTAMailProperties();
|
|
$conn = $properties_table->establishConnection('w');
|
|
|
|
$iterator = new LiskRawMigrationIterator($commit_conn, $commit_name);
|
|
foreach ($iterator as $commit) {
|
|
queryfx(
|
|
$conn,
|
|
'INSERT IGNORE INTO %T
|
|
(objectPHID, mailProperties, dateCreated, dateModified)
|
|
VALUES
|
|
(%s, %s, %d, %d)',
|
|
$properties_table->getTableName(),
|
|
$commit['phid'],
|
|
phutil_json_encode(
|
|
array(
|
|
'mailKey' => $commit['mailKey'],
|
|
)),
|
|
PhabricatorTime::getNow(),
|
|
PhabricatorTime::getNow());
|
|
}
|