From: Michael Date: Tue, 2 Feb 2021 06:10:10 +0000 (+0000) Subject: Added "user-item" table to the list of removable tables X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5a2c5da81d0e8b81a822dab0d4bf3fa705e30637;p=friendica.git Added "user-item" table to the list of removable tables --- diff --git a/src/Database/DBStructure.php b/src/Database/DBStructure.php index 8a3d6cc80a..3e1ef7aa1b 100644 --- a/src/Database/DBStructure.php +++ b/src/Database/DBStructure.php @@ -79,7 +79,8 @@ class DBStructure } $old_tables = ['fserver', 'gcign', 'gcontact', 'gcontact-relation', 'gfollower' ,'glink', 'item-delivery-data', - 'item-activity', 'item-content', 'item_id', 'poll', 'poll_result', 'queue', 'retriever_rule', 'sign', 'spam', 'term']; + 'item-activity', 'item-content', 'item_id', 'poll', 'poll_result', 'queue', 'retriever_rule', + 'sign', 'spam', 'term', 'user-item']; $tables = DBA::selectToArray(['INFORMATION_SCHEMA' => 'TABLES'], ['TABLE_NAME'], ['TABLE_SCHEMA' => DBA::databaseName(), 'TABLE_TYPE' => 'BASE TABLE']);