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

Remove imagePHIDs column from ConpherenceThread

Summary: Ref T11730. Removes the unused column, seen no issues during past week migrations.

Test Plan: Run migration, check database no longer contains column.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11730

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

+2 -2
+2
resources/sql/autopatches/20161016.conpherence.imagephids.sql
··· 1 + ALTER TABLE {$NAMESPACE}_conpherence.conpherence_thread 2 + DROP COLUMN imagePHIDs;
-2
src/applications/conpherence/storage/ConpherenceThread.php
··· 10 10 11 11 protected $title; 12 12 protected $topic; 13 - protected $imagePHIDs = array(); // TODO; nuke after migrations 14 13 protected $profileImagePHID; 15 14 protected $messageCount; 16 15 protected $recentParticipantPHIDs = array(); ··· 42 41 self::CONFIG_AUX_PHID => true, 43 42 self::CONFIG_SERIALIZATION => array( 44 43 'recentParticipantPHIDs' => self::SERIALIZATION_JSON, 45 - 'imagePHIDs' => self::SERIALIZATION_JSON, 46 44 ), 47 45 self::CONFIG_COLUMN_SCHEMA => array( 48 46 'title' => 'text255?',