]> git.mxchange.org Git - friendica.git/blob - src/Worker/DBUpdate.php
Missing namespace
[friendica.git] / src / Worker / DBUpdate.php
1 <?php
2 /**
3  * @file src/Worker/DBUpdate.php
4  * @brief This file is called when the database structure needs to be updated
5  */
6 namespace Friendica\Worker;
7
8 use Friendica\Core\Config;
9
10 class DBUpdate {
11         public static function execute() {
12                 // We are deleting the latest dbupdate entry.
13                 // This is done to avoid endless loops because the update was interupted.
14                 Config::delete('database', 'dbupdate_'.DB_UPDATE_VERSION);
15
16                 update_db($a);
17         }
18 }