Page MenuHomePhorge

DifferentialAffectedPath.php
No OneTemporary

Size
777 B
Referenced Files
None
Subscribers
None

DifferentialAffectedPath.php

<?php
/**
* Denormalized index table which stores relationships between revisions in
* Differential and paths in Diffusion.
*/
final class DifferentialAffectedPath extends DifferentialDAO {
protected $repositoryID;
protected $pathID;
protected $revisionID;
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
'id' => null,
'repositoryID' => 'id?',
),
self::CONFIG_KEY_SCHEMA => array(
'PRIMARY' => null,
'revisionID' => array(
'columns' => array('revisionID'),
),
'key_path' => array(
'columns' => array('pathID', 'repositoryID'),
),
),
) + parent::getConfiguration();
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 13, 1:18 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
109505
Default Alt Text
DifferentialAffectedPath.php (777 B)

Event Timeline