X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=acbb458f7fb62f436077ecc1417a865678f3c898;hb=955213f59871e018bcd960365ad6cd78acc8d2f6;hp=4b719682aafb707252f408ce6d7ce20a33385f13;hpb=7a82171bfe0dedabb014d0740b75c4a6ecb8d093;p=friendica.git diff --git a/update.php b/update.php index 4b719682aa..acbb458f7f 100644 --- a/update.php +++ b/update.php @@ -474,3 +474,37 @@ function update_1348() return Update::SUCCESS; } + +function update_1349() +{ + $correct = true; + foreach (Item::ACTIVITIES as $index => $activity) { + if (!DBA::exists('verb', ['id' => $index + 1, 'name' => $activity])) { + $correct = false; + } + } + + if (!$correct) { + // The update failed - but it cannot be recovered, since the data doesn't match our expectation + // This means that we can't use this "shortcut" to fill the "vid" field and we have to rely upon + // the postupdate. This is not fatal, but means that it will take some longer time for the system + // to fill all data. + return Update::SUCCESS; + } + + if (!DBA::e("UPDATE `item` INNER JOIN `item-activity` ON `item`.`uri-id` = `item-activity`.`uri-id` + SET `vid` = `item-activity`.`activity` + 1 WHERE `gravity` = ? AND (`vid` IS NULL OR `vid` = 0)", GRAVITY_ACTIVITY)) { + return Update::FAILED; + } + + return Update::SUCCESS; +} + +function update_1351() +{ + if (!DBA::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id` SET `thread`.`uri-id` = `item`.`uri-id`")) { + return Update::FAILED; + } + + return Update::SUCCESS; +}