Page MenuHomec4science

20150501.calendar.2.reply.php
No OneTemporary

File Metadata

Created
Tue, Oct 15, 01:10

20150501.calendar.2.reply.php

<?php
echo pht('Adding %s to events.', 'mailkeys')."\n";
$table = new PhabricatorCalendarEvent();
$conn_w = $table->establishConnection('w');
$iterator = new LiskMigrationIterator($table);
foreach ($iterator as $event) {
$id = $event->getID();
echo pht('Populating event %d...', $id)."\n";
queryfx(
$conn_w,
'UPDATE %T SET mailKey = %s WHERE id = %d',
$table->getTableName(),
Filesystem::readRandomCharacters(20),
$id);
}
echo pht('Done.')."\n";

Event Timeline