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

Increase Maniphest auxiliary storage size.

Test Plan:
Store large amounts of text into a string auxiliary field. It should
be stored successfully rather than truncated.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2575

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

authored by

James Rhodes and committed by
epriestley
cd99850c e57f2090

+7
+3
resources/sql/patches/20131302.maniphestvalue.sql
··· 1 + ALTER TABLE {$NAMESPACE}_maniphest.maniphest_taskauxiliarystorage 2 + MODIFY value LONGTEXT COLLATE utf8_bin; 3 +
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1157 1157 'type' => 'sql', 1158 1158 'name' => $this->getPatchPath('20130226.commitkey.sql'), 1159 1159 ), 1160 + '20131302.maniphestvalue.sql' => array( 1161 + 'type' => 'sql', 1162 + 'name' => $this->getPatchPath('20131302.maniphestvalue.sql'), 1163 + ), 1160 1164 ); 1161 1165 } 1162 1166