mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
ea5462fb60
Summary: Ref T5791. This does a few bits there. Namely: - Adds PHID column to PhabricatorMetaMTAMail - Implements a PhabricatorMetaMTAMailPHIDType - Script to backpopulate them. - Makes PhabricatorMetaMTAMail implement PolicyInterface. - View policy is NOONE and the author and recipients have automatic view capabilities - No edit capability. - Adds a PhabricatorMetaMTAMailQuery for PhabricatorMetaMTAMail. Test Plan: ran `./bin/storage upgrade` successfully. commented on a maniphest task and verifed the metamta mail object in the database was created successfully with a shiny new phid Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5791 Differential Revision: https://secure.phabricator.com/D13394
22 lines
468 B
PHP
22 lines
468 B
PHP
<?php
|
|
|
|
$table = new PhabricatorMetaMTAMail();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
echo pht('Assigning PHIDs to mails...')."\n";
|
|
foreach (new LiskMigrationIterator($table) as $mail) {
|
|
$id = $mail->getID();
|
|
|
|
echo pht('Updating mail %d...', $id)."\n";
|
|
if ($mail->getPHID()) {
|
|
continue;
|
|
}
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET phid = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
$table->generatePHID(),
|
|
$id);
|
|
}
|
|
echo pht('Done.')."\n";
|