Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96487581
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
Fri, Dec 27, 05:20
Size
951 B
Mime Type
text/x-php
Expires
Sun, Dec 29, 05:20 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23192175
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