Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101061838
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
Wed, Feb 5, 08:30
Size
862 B
Mime Type
text/x-php
Expires
Fri, Feb 7, 08:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24051371
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