2017-11-18 02:31:33 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/DBUpdate.php
|
|
|
|
* @brief This file is called when the database structure needs to be updated
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2019-02-03 16:46:50 -05:00
|
|
|
use Friendica\BaseObject;
|
2019-03-24 17:51:30 -04:00
|
|
|
use Friendica\Core\Config;
|
2018-10-05 18:53:13 -04:00
|
|
|
use Friendica\Core\Update;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2017-11-18 02:31:33 -05:00
|
|
|
|
2019-02-03 16:46:50 -05:00
|
|
|
class DBUpdate extends BaseObject
|
2018-07-09 22:39:59 -04:00
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2019-03-24 17:51:30 -04:00
|
|
|
// Just in case the last update wasn't failed
|
|
|
|
if (Config::get('system', 'update', Update::SUCCESS, true) != Update::FAILED) {
|
2019-12-15 16:34:11 -05:00
|
|
|
Update::run(DI::app()->getBasePath());
|
2019-03-24 17:51:30 -04:00
|
|
|
}
|
2017-11-18 02:31:33 -05:00
|
|
|
}
|
|
|
|
}
|