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