mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
e10fdbe77e
Summary: Patches often read from slaves (possibly stale data) and use that information to write on master. It causes problems when applying more patches quickly after each other because data created in previous patch may not be replicated yet. Test Plan: $ bin/storage upgrade Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4483
25 lines
564 B
PHP
25 lines
564 B
PHP
<?php
|
|
|
|
echo "Populating Questions with mail keys...\n";
|
|
$table = new PonderQuestion();
|
|
$table->openTransaction();
|
|
|
|
foreach (new LiskMigrationIterator($table) as $question) {
|
|
$id = $question->getID();
|
|
|
|
echo "Question {$id}: ";
|
|
if (!$question->getMailKey()) {
|
|
queryfx(
|
|
$question->establishConnection('w'),
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$question->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
echo "Generated Key\n";
|
|
} else {
|
|
echo "-\n";
|
|
}
|
|
}
|
|
|
|
$table->saveTransaction();
|
|
echo "Done.\n";
|