Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98213022
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
Sat, Jan 11, 02:56
Size
777 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 02:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23532606
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