Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/query/DifferentialRevisionQuery.php
Show First 20 Lines • Show All 766 Lines • ▼ Show 20 Lines | return array( | ||||
'type' => 'int', | 'type' => 'int', | ||||
'unique' => true, | 'unique' => true, | ||||
), | ), | ||||
'updated' => array( | 'updated' => array( | ||||
'table' => $primary, | 'table' => $primary, | ||||
'column' => 'dateModified', | 'column' => 'dateModified', | ||||
'type' => 'int', | 'type' => 'int', | ||||
), | ), | ||||
); | ) + parent::getOrderableColumns(); | ||||
} | } | ||||
protected function getPagingValueMap($cursor, array $keys) { | protected function getPagingValueMap($cursor, array $keys) { | ||||
$revision = $this->loadCursorObject($cursor); | $revision = $this->loadCursorObject($cursor); | ||||
return array( | return array( | ||||
'id' => $revision->getID(), | 'id' => $revision->getID(), | ||||
'updated' => $revision->getDateModified(), | 'updated' => $revision->getDateModified(), | ||||
); | ); | ||||
▲ Show 20 Lines • Show All 221 Lines • Show Last 20 Lines |