mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
Minor, mark SERIALIZATION_PHP fields as BINARY in Lisk
This commit is contained in:
parent
a298a79bda
commit
438915032a
2 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,9 @@ final class PhabricatorMarkupCache extends PhabricatorCacheDAO {
|
|||
'cacheData' => self::SERIALIZATION_PHP,
|
||||
'metadata' => self::SERIALIZATION_JSON,
|
||||
),
|
||||
self::CONFIG_BINARY => array(
|
||||
'cacheData' => true,
|
||||
),
|
||||
) + parent::getConfiguration();
|
||||
}
|
||||
|
||||
|
|
|
@ -92,6 +92,12 @@ final class HeraldTranscript extends HeraldDAO
|
|||
'conditionTranscripts' => self::SERIALIZATION_PHP,
|
||||
'applyTranscripts' => self::SERIALIZATION_PHP,
|
||||
),
|
||||
self::CONFIG_BINARY => array(
|
||||
'objectTranscript' => true,
|
||||
'ruleTranscripts' => true,
|
||||
'conditionTranscripts' => true,
|
||||
'applyTranscripts' => true,
|
||||
),
|
||||
) + parent::getConfiguration();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue