Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117790590
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
Mon, Jun 16, 00:48
Size
882 B
Mime Type
text/x-php
Expires
Wed, Jun 18, 00:48 (2 d)
Engine
blob
Format
Raw Data
Handle
26772444
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
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
null
,
'factType'
=>
'text32'
,
'objectA'
=>
'phid'
,
'valueX'
=>
'sint64'
,
'valueY'
=>
'sint64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'PRIMARY'
=>
null
,
'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