Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108118698
ConpherenceIndex.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, Apr 14, 13:05
Size
951 B
Mime Type
text/x-php
Expires
Wed, Apr 16, 13:05 (2 d)
Engine
blob
Format
Raw Data
Handle
25545113
Attached To
rPH Phabricator
ConpherenceIndex.php
View Options
<?php
final
class
ConpherenceIndex
extends
ConpherenceDAO
{
protected
$threadPHID
;
protected
$transactionPHID
;
protected
$previousTransactionPHID
;
protected
$corpus
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'previousTransactionPHID'
=>
'phid?'
,
'corpus'
=>
'fulltext'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_thread'
=>
array
(
'columns'
=>
array
(
'threadPHID'
),
),
'key_transaction'
=>
array
(
'columns'
=>
array
(
'transactionPHID'
),
'unique'
=>
true
,
),
'key_previous'
=>
array
(
'columns'
=>
array
(
'previousTransactionPHID'
),
'unique'
=>
true
,
),
'key_corpus'
=>
array
(
'columns'
=>
array
(
'corpus'
),
'type'
=>
'FULLTEXT'
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment