@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 patch to remove conduit_connectionlog table (Fixes T9982)

Summary: Adds a schema patch that removes conduit_connectionlog. This table hasn't been used in 8ish months so it's probably safe to get rid of.

Test Plan: Apply the patch locally and confirm that the table does indeed get dropped.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley

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

Josh Cox 3c62be69 d26cca27

+1 -28
+1
resources/sql/autopatches/20160824.connectionlog.sql
··· 1 + DROP TABLE {$NAMESPACE}_conduit.conduit_connectionlog;
-2
src/__phutil_library_map__.php
··· 2114 2114 'PhabricatorConduitAPIController' => 'applications/conduit/controller/PhabricatorConduitAPIController.php', 2115 2115 'PhabricatorConduitApplication' => 'applications/conduit/application/PhabricatorConduitApplication.php', 2116 2116 'PhabricatorConduitCertificateToken' => 'applications/conduit/storage/PhabricatorConduitCertificateToken.php', 2117 - 'PhabricatorConduitConnectionLog' => 'applications/conduit/storage/PhabricatorConduitConnectionLog.php', 2118 2117 'PhabricatorConduitConsoleController' => 'applications/conduit/controller/PhabricatorConduitConsoleController.php', 2119 2118 'PhabricatorConduitContentSource' => 'infrastructure/contentsource/PhabricatorConduitContentSource.php', 2120 2119 'PhabricatorConduitController' => 'applications/conduit/controller/PhabricatorConduitController.php', ··· 6846 6845 'PhabricatorConduitAPIController' => 'PhabricatorConduitController', 6847 6846 'PhabricatorConduitApplication' => 'PhabricatorApplication', 6848 6847 'PhabricatorConduitCertificateToken' => 'PhabricatorConduitDAO', 6849 - 'PhabricatorConduitConnectionLog' => 'PhabricatorConduitDAO', 6850 6848 'PhabricatorConduitConsoleController' => 'PhabricatorConduitController', 6851 6849 'PhabricatorConduitContentSource' => 'PhabricatorContentSource', 6852 6850 'PhabricatorConduitController' => 'PhabricatorController',
-26
src/applications/conduit/storage/PhabricatorConduitConnectionLog.php
··· 1 - <?php 2 - 3 - final class PhabricatorConduitConnectionLog extends PhabricatorConduitDAO { 4 - 5 - protected $client; 6 - protected $clientVersion; 7 - protected $clientDescription; 8 - protected $username; 9 - 10 - protected function getConfiguration() { 11 - return array( 12 - self::CONFIG_COLUMN_SCHEMA => array( 13 - 'client' => 'text255?', 14 - 'clientVersion' => 'text255?', 15 - 'clientDescription' => 'text255?', 16 - 'username' => 'text255?', 17 - ), 18 - self::CONFIG_KEY_SCHEMA => array( 19 - 'key_created' => array( 20 - 'columns' => array('dateCreated'), 21 - ), 22 - ), 23 - ) + parent::getConfiguration(); 24 - } 25 - 26 - }