@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add code to drop old databases

Summary: these existed once, are no more, and don't get cleaned up in the current code path

Test Plan: storage destroy --dryrun -- noted the correct database names

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2237

Differential Revision: https://secure.phabricator.com/D4329

+3
+3
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDestroyWorkflow.php
··· 53 53 } else { 54 54 $databases = $api->getDatabaseList($patches); 55 55 $databases[] = $api->getDatabaseName('meta_data'); 56 + // These are legacy databases that were dropped long ago. See T2237. 57 + $databases[] = $api->getDatabaseName('phid'); 58 + $databases[] = $api->getDatabaseName('directory'); 56 59 } 57 60 58 61 foreach ($databases as $database) {