3 abstract class PhabricatorCustomFieldStringIndexStorage
4 extends PhabricatorCustomFieldIndexStorage
{
6 protected function getConfiguration() {
8 self
::CONFIG_COLUMN_SCHEMA
=> array(
9 'indexKey' => 'bytes12',
10 'indexValue' => 'sort',
12 self
::CONFIG_KEY_SCHEMA
=> array(
14 'columns' => array('objectPHID', 'indexKey', 'indexValue(64)'),
17 'columns' => array('indexKey', 'indexValue(64)'),
20 ) + parent
::getConfiguration();
23 public function formatForInsert(AphrontDatabaseConnection
$conn) {
27 $this->getObjectPHID(),
29 $this->getIndexValue());
32 public function getIndexValueType() {