Merge pull request #11976 from annando/issue-11975
Issue 11975: Don't call the postupdate if the table is missing
This commit is contained in:
commit
a36ea64bb4
1 changed files with 5 additions and 0 deletions
|
@ -1040,6 +1040,11 @@ class PostUpdate
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!DBStructure::existsTable('conversation')) {
|
||||||
|
DI::config()->set('system', 'post_update_version', 1452);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
$id = DI::config()->get('system', 'post_update_version_1452_id', 0);
|
$id = DI::config()->get('system', 'post_update_version_1452_id', 0);
|
||||||
|
|
||||||
Logger::info('Start', ['uri-id' => $id]);
|
Logger::info('Start', ['uri-id' => $id]);
|
||||||
|
|
Loading…
Reference in a new issue