]> git.mxchange.org Git - friendica.git/commitdiff
[Database version 1520] Reset user.parent-uid to null if it is set to zero
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 27 May 2023 22:19:41 +0000 (18:19 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 29 May 2023 22:55:00 +0000 (18:55 -0400)
database.sql
static/dbstructure.config.php
update.php

index 697f250fee392c29baf80a1e29267f8eb4af4182..d61a3eda5ad4e6fdce8b69c4ef7ec188e699a6b9 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2023.09-dev (Giant Rhubarb)
--- DB_UPDATE_VERSION 1519
+-- DB_UPDATE_VERSION 1520
 -- ------------------------------------------
 
 
index 1b3e3487593d35aa3d6565b9c6076bed2791565e..8ff6604121aef3841831647f0c2f5690effedeee 100644 (file)
@@ -54,8 +54,9 @@
 
 use Friendica\Database\DBA;
 
+// This file is required several times during the test in DbaDefinition which justifies this condition
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1519);
+       define('DB_UPDATE_VERSION', 1520);
 }
 
 return [
index 3cd0a45a7b05ca64ac3ca9b48d978f9413def41c..14219bcdcb3b7280d8c18159a25ab0e4da3785b2 100644 (file)
@@ -1326,3 +1326,10 @@ function update_1518()
 
        return Update::SUCCESS;
 }
+
+function update_1520(): int
+{
+       DBA::update('user', ['parent-uid' => null], ['parent-uid' => 0]);
+
+       return Update::SUCCESS;
+}