Move DB_UPDATE_VERSION from boot.php to config/dbstructure.php
This commit is contained in:
parent
fad99b8619
commit
19ffc0510b
1
boot.php
1
boot.php
|
@ -41,7 +41,6 @@ define('FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
|
define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
|
||||||
define('FRIENDICA_VERSION', '2018.12-dev');
|
define('FRIENDICA_VERSION', '2018.12-dev');
|
||||||
define('DFRN_PROTOCOL_VERSION', '2.23');
|
define('DFRN_PROTOCOL_VERSION', '2.23');
|
||||||
define('DB_UPDATE_VERSION', 1289);
|
|
||||||
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -27,11 +27,16 @@
|
||||||
* ],
|
* ],
|
||||||
* ],
|
* ],
|
||||||
*
|
*
|
||||||
|
* If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value below.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
|
define('DB_UPDATE_VERSION', 1289);
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
"addon" => [
|
"addon" => [
|
||||||
"comment" => "registered addons",
|
"comment" => "registered addons",
|
||||||
|
|
|
@ -573,7 +573,11 @@ class App
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
$stamp1 = microtime(true);
|
||||||
|
|
||||||
DBA::connect($db_host, $db_user, $db_pass, $db_data, $charset);
|
if (DBA::connect($db_host, $db_user, $db_pass, $db_data, $charset)) {
|
||||||
|
// Loads DB_UPDATE_VERSION constant
|
||||||
|
Database\DBStructure::definition();
|
||||||
|
}
|
||||||
|
|
||||||
unset($db_host, $db_user, $db_pass, $db_data, $charset);
|
unset($db_host, $db_user, $db_pass, $db_data, $charset);
|
||||||
|
|
||||||
$this->saveTimestamp($stamp1, 'network');
|
$this->saveTimestamp($stamp1, 'network');
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
namespace Friendica\Database;
|
namespace Friendica\Database;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Friendica\Core\Hook;
|
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
|
use Friendica\Core\Hook;
|
||||||
use Friendica\Core\L10n;
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Util\DateTimeFormat;
|
use Friendica\Util\DateTimeFormat;
|
||||||
|
|
||||||
|
@ -830,6 +830,7 @@ class DBStructure
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the database structure definition from the config/dbstructure.php file.
|
* Loads the database structure definition from the config/dbstructure.php file.
|
||||||
|
* On first pass, defines DB_UPDATE_VERSION constant.
|
||||||
*
|
*
|
||||||
* @see config/dbstructure.php
|
* @see config/dbstructure.php
|
||||||
* @return array
|
* @return array
|
||||||
|
|
|
@ -32,7 +32,7 @@ require_once 'include/dba.php';
|
||||||
*
|
*
|
||||||
* 1. Create a function "update_4712()" here in the update.php
|
* 1. Create a function "update_4712()" here in the update.php
|
||||||
* 2. Apply the needed structural changes in config/dbStructure.php
|
* 2. Apply the needed structural changes in config/dbStructure.php
|
||||||
* 3. Set DB_UPDATE_VERSION in boot.php to 4712.
|
* 3. Set DB_UPDATE_VERSION in config/dbstructure.php to 4712.
|
||||||
*
|
*
|
||||||
* If you need to run a script before the database update, name the function "pre_update_4712()"
|
* If you need to run a script before the database update, name the function "pre_update_4712()"
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue