Command back ...

This commit is contained in:
Michael
2017-11-14 22:13:33 +00:00
parent 405753d1c3
commit 9576f6743d
21 changed files with 1 additions and 1 deletions

13
include/dbupdate.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use Friendica\Core\Config;
function dbupdate_run(&$argv, &$argc) {
global $a;
// We are deleting the latest dbupdate entry.
// This is done to avoid endless loops because the update was interupted.
Config::delete('database', 'dbupdate_'.DB_UPDATE_VERSION);
update_db($a);
}