2017-11-18 08:31:33 +01: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 22:46:50 +01:00
|
|
|
use Friendica\BaseObject;
|
2018-10-06 00:53:13 +02:00
|
|
|
use Friendica\Core\Update;
|
2017-11-18 08:31:33 +01:00
|
|
|
|
2019-02-03 22:46:50 +01:00
|
|
|
class DBUpdate extends BaseObject
|
2018-07-10 04:39:59 +02:00
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2019-02-03 22:46:50 +01:00
|
|
|
Update::run(self::getApp()->getBasePath());
|
2017-11-18 08:31:33 +01:00
|
|
|
}
|
|
|
|
}
|