mirror of
https://github.com/friendica/friendica
synced 2025-05-04 21:04:10 +02:00
Moved the functions update_db and run_update_function to a Friendica\Core\Update class
This commit is contained in:
parent
c6ce9ddaa4
commit
e876adef8f
4 changed files with 130 additions and 7 deletions
|
@ -6,17 +6,16 @@
|
|||
namespace Friendica\Worker;
|
||||
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\Update;
|
||||
|
||||
class DBUpdate
|
||||
{
|
||||
public static function execute()
|
||||
{
|
||||
$a = \Friendica\BaseObject::getApp();
|
||||
|
||||
// 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);
|
||||
Update::run();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue