[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/differential/storage/ -> DifferentialAffectedPath.php (source)

   1  <?php
   2  
   3  /**
   4   * Denormalized index table which stores relationships between revisions in
   5   * Differential and paths in Diffusion.
   6   */
   7  final class DifferentialAffectedPath extends DifferentialDAO {
   8  
   9    protected $repositoryID;
  10    protected $pathID;
  11    protected $epoch;
  12    protected $revisionID;
  13  
  14    public function getConfiguration() {
  15      return array(
  16        self::CONFIG_TIMESTAMPS => false,
  17        self::CONFIG_COLUMN_SCHEMA => array(
  18          'id' => null,
  19        ),
  20        self::CONFIG_KEY_SCHEMA => array(
  21          'PRIMARY' => null,
  22          'repositoryID' => array(
  23            'columns' => array('repositoryID', 'pathID', 'epoch'),
  24          ),
  25          'revisionID' => array(
  26            'columns' => array('revisionID'),
  27          ),
  28        ),
  29      ) + parent::getConfiguration();
  30    }
  31  
  32  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1