Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/storage/PhabricatorRepositoryURI.php
| Show All 34 Lines | final class PhabricatorRepositoryURI | ||||
| protected function getConfiguration() { | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| self::CONFIG_AUX_PHID => true, | self::CONFIG_AUX_PHID => true, | ||||
| self::CONFIG_COLUMN_SCHEMA => array( | self::CONFIG_COLUMN_SCHEMA => array( | ||||
| 'uri' => 'text255', | 'uri' => 'text255', | ||||
| 'builtinProtocol' => 'text32?', | 'builtinProtocol' => 'text32?', | ||||
| 'builtinIdentifier' => 'text32?', | 'builtinIdentifier' => 'text32?', | ||||
| 'credentialPHID' => 'phid?', | |||||
| 'ioType' => 'text32', | 'ioType' => 'text32', | ||||
| 'displayType' => 'text32', | 'displayType' => 'text32', | ||||
| 'isDisabled' => 'bool', | 'isDisabled' => 'bool', | ||||
| ), | ), | ||||
| self::CONFIG_KEY_SCHEMA => array( | self::CONFIG_KEY_SCHEMA => array( | ||||
| 'key_builtin' => array( | 'key_builtin' => array( | ||||
| 'columns' => array( | 'columns' => array( | ||||
| 'repositoryPHID', | 'repositoryPHID', | ||||
| ▲ Show 20 Lines • Show All 250 Lines • Show Last 20 Lines | |||||