Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96122979
PhabricatorFactRaw.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
Sun, Dec 22, 21:37
Size
862 B
Mime Type
text/x-php
Expires
Tue, Dec 24, 21:37 (2 d)
Engine
blob
Format
Raw Data
Handle
23127824
Attached To
rPH Phabricator
PhabricatorFactRaw.php
View Options
<?php
/**
* Raw fact about an object.
*/
final
class
PhabricatorFactRaw
extends
PhabricatorFactDAO
{
protected
$factType
;
protected
$objectPHID
;
protected
$objectA
;
protected
$valueX
;
protected
$valueY
;
protected
$epoch
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
'auto64'
,
'factType'
=>
'text32'
,
'objectA'
=>
'phid'
,
'valueX'
=>
'sint64'
,
'valueY'
=>
'sint64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
),
),
'factType'
=>
array
(
'columns'
=>
array
(
'factType'
,
'epoch'
),
),
'factType_2'
=>
array
(
'columns'
=>
array
(
'factType'
,
'objectA'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment