Merge pull request #6118 from annando/update-before-postupdate

Execute database update before post update is called
This commit is contained in:
Hypolite Petovan 2018-11-12 07:19:15 -05:00 committed by GitHub
commit f67cf4e63b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@ namespace Friendica\Core\Console;
use Friendica\Core\L10n; use Friendica\Core\L10n;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\Update;
/** /**
* Performs database post updates * Performs database post updates
@ -54,6 +55,10 @@ HELP;
throw new \RuntimeException('Database isn\'t ready or populated yet'); throw new \RuntimeException('Database isn\'t ready or populated yet');
} }
echo L10n::t('Check for pending update actions.') . "\n";
Update::run(true, true, false);
echo L10n::t('Done.') . "\n";
echo L10n::t('Execute pending post updates.') . "\n"; echo L10n::t('Execute pending post updates.') . "\n";
while (!\Friendica\Database\PostUpdate::update()) { while (!\Friendica\Database\PostUpdate::update()) {