1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-11 14:28:28 +00:00
friendica-github/include/dbupdate.php

14 lines
289 B
PHP
Raw Normal View History

<?php
use Friendica\Core\Config;
function dbupdate_run(&$argv, &$argc) {
2017-02-26 23:16:49 +00:00
global $a;
// 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);
2013-01-18 23:38:49 -07:00
update_db($a);
}