mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
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
This commit is contained in:
parent
b1449fab63
commit
dd25b2b48b
2 changed files with 2 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE {$NAMESPACE}_conpherence.conpherence_thread
|
||||
DROP COLUMN imagePHIDs;
|
|
@ -10,7 +10,6 @@ final class ConpherenceThread extends ConpherenceDAO
|
|||
|
||||
protected $title;
|
||||
protected $topic;
|
||||
protected $imagePHIDs = array(); // TODO; nuke after migrations
|
||||
protected $profileImagePHID;
|
||||
protected $messageCount;
|
||||
protected $recentParticipantPHIDs = array();
|
||||
|
@ -42,7 +41,6 @@ final class ConpherenceThread extends ConpherenceDAO
|
|||
self::CONFIG_AUX_PHID => true,
|
||||
self::CONFIG_SERIALIZATION => array(
|
||||
'recentParticipantPHIDs' => self::SERIALIZATION_JSON,
|
||||
'imagePHIDs' => self::SERIALIZATION_JSON,
|
||||
),
|
||||
self::CONFIG_COLUMN_SCHEMA => array(
|
||||
'title' => 'text255?',
|
||||
|
|
Loading…
Reference in a new issue