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