2013-01-14 16:58:32 -07:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 00:29:14 -04:00
|
|
|
use Friendica\Core\Config;
|
2017-01-18 21:45:32 +00:00
|
|
|
|
2013-01-14 16:58:32 -07:00
|
|
|
function dbupdate_run(&$argv, &$argc) {
|
2017-02-26 23:16:49 +00:00
|
|
|
global $a;
|
2013-01-14 16:58:32 -07:00
|
|
|
|
2017-01-30 21:18:08 +00:00
|
|
|
// We are deleting the latest dbupdate entry.
|
|
|
|
// This is done to avoid endless loops because the update was interupted.
|
2017-03-14 15:17:21 +00:00
|
|
|
Config::delete('database', 'dbupdate_'.DB_UPDATE_VERSION);
|
2017-01-30 21:18:08 +00:00
|
|
|
|
2013-01-18 23:38:49 -07:00
|
|
|
update_db($a);
|
2013-01-14 16:58:32 -07:00
|
|
|
}
|