Avoid foreign key violations when deleting unused tables
authorMichael <heluecht@pirati.ca>
Wed, 24 Mar 2021 19:47:55 +0000 (19:47 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 24 Mar 2021 19:47:55 +0000 (19:47 +0000)
src/Database/DBStructure.php

index 0b116b8..0a532fa 100644 (file)
@@ -78,9 +78,9 @@ class DBStructure
                        return;
                }
 
-               $old_tables = ['fserver', 'gcign', 'gcontact', 'gcontact-relation', 'gfollower' ,'glink', 'item', 'item-delivery-data',
+               $old_tables = ['fserver', 'gcign', 'gcontact', 'gcontact-relation', 'gfollower' ,'glink', 'item-delivery-data',
                        'item-activity', 'item-content', 'item_id', 'participation', 'poll', 'poll_result', 'queue', 'retriever_rule',
-                       'sign', 'spam', 'term', 'thread', 'user-item'];
+                       'sign', 'spam', 'term', 'user-item', 'thread', 'item'];
 
                $tables = DBA::selectToArray(['INFORMATION_SCHEMA' => 'TABLES'], ['TABLE_NAME'],
                        ['TABLE_SCHEMA' => DBA::databaseName(), 'TABLE_TYPE' => 'BASE TABLE']);