mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
24 lines
493 B
PHP
24 lines
493 B
PHP
|
<?php
|
||
|
|
||
|
echo "Adding mailkeys to macros.\n";
|
||
|
|
||
|
$table = new PhabricatorFileImageMacro();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
$iterator = new LiskMigrationIterator($table);
|
||
|
foreach ($iterator as $macro) {
|
||
|
$id = $macro->getID();
|
||
|
|
||
|
echo "Populating macro {$id}...\n";
|
||
|
|
||
|
if (!$macro->getMailKey()) {
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
Filesystem::readRandomCharacters(20),
|
||
|
$id);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|