X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=update.php;h=980ec721ab281db90676eab2cb59e03953c3f730;hb=ba967386f4f2c1d5977f1ac4ac4473ad892e366b;hp=8dcd1b71dd2ce5d89fffb8176a467d19541e4b9c;hpb=c6a9e8be397c5b3c519470f8e22f23b0fbdd3b68;p=friendica.git diff --git a/update.php b/update.php index 8dcd1b71dd..980ec721ab 100644 --- a/update.php +++ b/update.php @@ -1315,3 +1315,37 @@ function update_1516() return Update::SUCCESS; } + +function update_1518() +{ + $users = DBA::select('user', ['uid']); + while ($user = DBA::fetch($users)) { + Contact::updateSelfFromUserID($user['uid']); + } + DBA::close($users); + + 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; +}