1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-01-14 06:24:43 +00:00
friendica-github/include/dbupdate.php

13 lines
289 B
PHP

<?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);
}