1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

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
This commit is contained in:
James Rhodes 2013-03-06 10:45:21 -08:00 committed by epriestley
parent e57f209056
commit cd99850cb8
2 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,3 @@
ALTER TABLE {$NAMESPACE}_maniphest.maniphest_taskauxiliarystorage
MODIFY value LONGTEXT COLLATE utf8_bin;

View file

@ -1157,6 +1157,10 @@ final class PhabricatorBuiltinPatchList extends PhabricatorSQLPatchList {
'type' => 'sql',
'name' => $this->getPatchPath('20130226.commitkey.sql'),
),
'20131302.maniphestvalue.sql' => array(
'type' => 'sql',
'name' => $this->getPatchPath('20131302.maniphestvalue.sql'),
),
);
}