@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.

Drop old "differential_commit" table

Summary: Ref T13276. Ref T13513. All readers and writers were removed more than a year ago; clean up the last remnants of this table.

Test Plan: Grepped for table references, found none.

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13513, T13276

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

+1 -21
+1
resources/sql/autopatches/20200520.inline.03.dropcommit.sql
··· 1 + DROP TABLE IF EXISTS {$NAMESPACE}_differential.differential_commit;
-21
src/applications/differential/storage/DifferentialSchemaSpec.php
··· 31 31 'persistence' => PhabricatorConfigTableSchema::PERSISTENCE_CACHE, 32 32 )); 33 33 34 - // TODO: All readers and writers for this table were removed in April 35 - // 2019. Destroy this table once we're sure we won't miss it. 36 - 37 - $this->buildRawSchema( 38 - id(new DifferentialRevision())->getApplicationName(), 39 - 'differential_commit', 40 - array( 41 - 'revisionID' => 'id', 42 - 'commitPHID' => 'phid', 43 - ), 44 - array( 45 - 'PRIMARY' => array( 46 - 'columns' => array('revisionID', 'commitPHID'), 47 - 'unique' => true, 48 - ), 49 - 'commitPHID' => array( 50 - 'columns' => array('commitPHID'), 51 - 'unique' => true, 52 - ), 53 - )); 54 - 55 34 $this->buildRawSchema( 56 35 id(new DifferentialRevision())->getApplicationName(), 57 36 ArcanistDifferentialRevisionHash::TABLE_NAME,