friendica/src/Worker/DBUpdate.php

18 lines
285 B
PHP
Raw Normal View History

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;
use Friendica\Core\Config;
use Friendica\Core\Update;
2017-11-18 08:31:33 +01:00
class DBUpdate
{
public static function execute()
{
Update::run();
2017-11-18 08:31:33 +01:00
}
}