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