mirror of
https://github.com/friendica/friendica
synced 2025-01-13 20:04:44 +00:00
17 lines
285 B
PHP
17 lines
285 B
PHP
<?php
|
|
/**
|
|
* @file src/Worker/DBUpdate.php
|
|
* @brief This file is called when the database structure needs to be updated
|
|
*/
|
|
namespace Friendica\Worker;
|
|
|
|
use Friendica\Core\Config;
|
|
use Friendica\Core\Update;
|
|
|
|
class DBUpdate
|
|
{
|
|
public static function execute()
|
|
{
|
|
Update::run();
|
|
}
|
|
}
|