mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
72a896f772
Ref T8216. Auditors: btrahan
18 lines
417 B
PHP
18 lines
417 B
PHP
<?php
|
|
|
|
$table = new PhabricatorProject();
|
|
$conn_w = $table->establishConnection('w');
|
|
$iterator = new LiskMigrationIterator($table);
|
|
foreach ($iterator as $project) {
|
|
$id = $project->getID();
|
|
|
|
echo pht('Adding mail key for project %d...', $id);
|
|
echo "\n";
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
}
|