]> git.mxchange.org Git - friendica.git/blobdiff - update.php
Revert Post::selectOriginal to original logic
[friendica.git] / update.php
index 3cd0a45a7b05ca64ac3ca9b48d978f9413def41c..980ec721ab281db90676eab2cb59e03953c3f730 100644 (file)
@@ -1326,3 +1326,26 @@ function update_1518()
 
        return Update::SUCCESS;
 }
+
+function update_1520(): int
+{
+       DBA::update('user', ['parent-uid' => null], ['parent-uid' => 0]);
+
+       return Update::SUCCESS;
+}
+
+/**
+ * user-contact.remote_self was wrongly declared as boolean, possibly truncating integer values from contact.remote_self
+ *
+ * @return int
+ * @throws Exception
+ */
+function update_1524(): int
+{
+       $contacts = DBA::select('contact', ['uid', 'uri-id', 'remote_self'], ["`uid` != ?", 0]);
+       while ($contact = DBA::fetch($contacts)) {
+               Contact\User::insertForContactArray($contact);
+       }
+
+       return Update::SUCCESS;
+}