Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / resources / sql / autopatches / 20151107.phame.blog.mailkey.2.php
blobc6f316aa47250554c2b6a965e568da4de3ed7896
1 <?php
3 $table = new PhameBlog();
4 $conn_w = $table->establishConnection('w');
5 $iterator = new LiskMigrationIterator($table);
6 foreach ($iterator as $blog) {
7 $id = $blog->getID();
9 echo pht('Adding mail key for Blog %d...', $id);
10 echo "\n";
12 queryfx(
13 $conn_w,
14 'UPDATE %T SET mailKey = %s WHERE id = %d',
15 $table->getTableName(),
16 Filesystem::readRandomCharacters(20),
17 $id);