Remove product literal strings in "pht()", part 6
[phabricator.git] / src / applications / differential / storage / DifferentialAffectedPath.php
blob400a09fe82229325aa45ab6b109163ebad3743f7
1 <?php
3 /**
4 * Denormalized index table which stores relationships between revisions in
5 * Differential and paths in Diffusion.
6 */
7 final class DifferentialAffectedPath extends DifferentialDAO {
9 protected $repositoryID;
10 protected $pathID;
11 protected $revisionID;
13 protected function getConfiguration() {
14 return array(
15 self::CONFIG_TIMESTAMPS => false,
16 self::CONFIG_COLUMN_SCHEMA => array(
17 'id' => null,
18 'repositoryID' => 'id?',
20 self::CONFIG_KEY_SCHEMA => array(
21 'PRIMARY' => null,
22 'revisionID' => array(
23 'columns' => array('revisionID'),
25 'key_path' => array(
26 'columns' => array('pathID', 'repositoryID'),
29 ) + parent::getConfiguration();