Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91914937
DifferentialAffectedPath.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 15, 17:06
Size
777 B
Mime Type
text/x-php
Expires
Sun, Nov 17, 17:06 (2 d)
Engine
blob
Format
Raw Data
Handle
22346479
Attached To
rPH Phabricator
DifferentialAffectedPath.php
View Options
<?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
$epoch
;
protected
$revisionID
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
null
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'PRIMARY'
=>
null
,
'repositoryID'
=>
array
(
'columns'
=>
array
(
'repositoryID'
,
'pathID'
,
'epoch'
),
),
'revisionID'
=>
array
(
'columns'
=>
array
(
'revisionID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment