Differential D21559 Diff 51321 src/applications/harbormaster/storage/build/HarbormasterBuildTarget.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/storage/build/HarbormasterBuildTarget.php
| Show First 20 Lines • Show All 113 Lines • ▼ Show 20 Lines | return array( | ||||
| // T6203/NULLABILITY | // T6203/NULLABILITY | ||||
| // This should not be nullable. | // This should not be nullable. | ||||
| 'name' => 'text255?', | 'name' => 'text255?', | ||||
| ), | ), | ||||
| self::CONFIG_KEY_SCHEMA => array( | self::CONFIG_KEY_SCHEMA => array( | ||||
| 'key_build' => array( | 'key_build' => array( | ||||
| 'columns' => array('buildPHID', 'buildStepPHID'), | 'columns' => array('buildPHID', 'buildStepPHID'), | ||||
| ), | ), | ||||
| 'key_started' => array( | |||||
| 'columns' => array('dateStarted'), | |||||
| ), | |||||
| 'key_completed' => array( | |||||
| 'columns' => array('dateCompleted'), | |||||
| ), | |||||
| 'key_created' => array( | |||||
| 'columns' => array('dateCreated'), | |||||
| ), | |||||
| ), | ), | ||||
| ) + parent::getConfiguration(); | ) + parent::getConfiguration(); | ||||
| } | } | ||||
| public function generatePHID() { | public function generatePHID() { | ||||
| return PhabricatorPHID::generateNewPHID( | return PhabricatorPHID::generateNewPHID( | ||||
| HarbormasterBuildTargetPHIDType::TYPECONST); | HarbormasterBuildTargetPHIDType::TYPECONST); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 368 Lines • Show Last 20 Lines | |||||