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;
|
|
|
|
|
2018-10-05 18:53:13 -04:00
|
|
|
use Friendica\Core\Update;
|
2017-11-18 02:31:33 -05:00
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
class DBUpdate
|
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2018-10-05 18:53:13 -04:00
|
|
|
Update::run();
|
2017-11-18 02:31:33 -05:00
|
|
|
}
|
|
|
|
}
|