1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 21:32:43 +01:00

Minor, mark SERIALIZATION_PHP fields as BINARY in Lisk

This commit is contained in:
epriestley 2014-02-23 16:34:41 -08:00
parent a298a79bda
commit 438915032a
2 changed files with 9 additions and 0 deletions

View file

@ -12,6 +12,9 @@ final class PhabricatorMarkupCache extends PhabricatorCacheDAO {
'cacheData' => self::SERIALIZATION_PHP, 'cacheData' => self::SERIALIZATION_PHP,
'metadata' => self::SERIALIZATION_JSON, 'metadata' => self::SERIALIZATION_JSON,
), ),
self::CONFIG_BINARY => array(
'cacheData' => true,
),
) + parent::getConfiguration(); ) + parent::getConfiguration();
} }

View file

@ -92,6 +92,12 @@ final class HeraldTranscript extends HeraldDAO
'conditionTranscripts' => self::SERIALIZATION_PHP, 'conditionTranscripts' => self::SERIALIZATION_PHP,
'applyTranscripts' => self::SERIALIZATION_PHP, 'applyTranscripts' => self::SERIALIZATION_PHP,
), ),
self::CONFIG_BINARY => array(
'objectTranscript' => true,
'ruleTranscripts' => true,
'conditionTranscripts' => true,
'applyTranscripts' => true,
),
) + parent::getConfiguration(); ) + parent::getConfiguration();
} }