DBClean now works with the conversation table as well
This commit is contained in:
parent
a4451c7c3d
commit
9ffde01fc1
5 changed files with 40 additions and 16 deletions
4
boot.php
4
boot.php
|
@ -44,7 +44,7 @@ define('FRIENDICA_PLATFORM', 'Friendica');
|
|||
define('FRIENDICA_CODENAME', 'Asparagus');
|
||||
define('FRIENDICA_VERSION', '3.6-dev');
|
||||
define('DFRN_PROTOCOL_VERSION', '2.23');
|
||||
define('DB_UPDATE_VERSION', 1235);
|
||||
define('DB_UPDATE_VERSION', 1236);
|
||||
|
||||
/**
|
||||
* @brief Constant with a HTML line break.
|
||||
|
@ -686,7 +686,7 @@ function update_db(App $a)
|
|||
// Compare the current structure with the defined structure
|
||||
|
||||
$t = Config::get('database', 'dbupdate_' . DB_UPDATE_VERSION);
|
||||
if ($t !== false) {
|
||||
if (!is_null($t)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue