From: Michael Date: Thu, 7 Jan 2021 18:24:26 +0000 (+0000) Subject: Add some more tables to remove orphans X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a119c030fdfe242aa1d3b01b59ffc49fbc8845a8;p=friendica.git Add some more tables to remove orphans --- diff --git a/update.php b/update.php index ffcfa6a90f..b5d1784894 100644 --- a/update.php +++ b/update.php @@ -835,6 +835,14 @@ function pre_update_1377() return Update::FAILED; } + if (DBStructure::existsTable('item-activity') && !DBA::e("DELETE FROM `item-activity` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) { + return Update::FAILED; + } + + if (DBStructure::existsTable('item-content') && !DBA::e("DELETE FROM `item-content` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) { + return Update::FAILED; + } + if (!DBA::e("DELETE FROM `notify` WHERE `uri-id` NOT IN (SELECT `id` FROM `item-uri`)")) { return Update::FAILED; }