Page MenuHomePhorge

20130805.pastemailkeypop.php
No OneTemporary

Size
584 B
Referenced Files
None
Subscribers
None

20130805.pastemailkeypop.php

<?php
echo pht('Populating pastes with mail keys...')."\n";
$table = new PhabricatorPaste();
$table->openTransaction();
$conn_w = $table->establishConnection('w');
foreach (new LiskMigrationIterator($table) as $paste) {
$id = $paste->getID();
echo "P{$id}: ";
if (!$paste->getMailKey()) {
queryfx(
$conn_w,
'UPDATE %T SET mailKey = %s WHERE id = %d',
$paste->getTableName(),
Filesystem::readRandomCharacters(20),
$id);
echo pht('Generated Key')."\n";
} else {
echo "-\n";
}
}
$table->saveTransaction();
echo pht('Done.')."\n";

File Metadata

Mime Type
text/x-php
Expires
Tue, May 6, 6:50 AM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
81199
Default Alt Text
20130805.pastemailkeypop.php (584 B)

Event Timeline