Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106316351
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
Mon, Mar 24, 19:16
Size
777 B
Mime Type
text/x-php
Expires
Wed, Mar 26, 19:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25166364
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