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