]> git.mxchange.org Git - friendica.git/blob - src/Worker/DBUpdate.php
Add support for legacy $lang config in App->loadConfig
[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 {
12         public static function execute()
13         {
14                 $a = \Friendica\BaseObject::getApp();
15
16                 // We are deleting the latest dbupdate entry.
17                 // This is done to avoid endless loops because the update was interupted.
18                 Config::delete('database', 'dbupdate_'.DB_UPDATE_VERSION);
19
20                 update_db($a);
21         }
22 }