Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97991635
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
Wed, Jan 8, 09:01
Size
954 B
Mime Type
text/x-php
Expires
Fri, Jan 10, 09:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23474294
Attached To
rPH Phabricator
ConpherenceIndex.php
View Options
<?php
final
class
ConpherenceIndex
extends
ConpherenceDAO
{
protected
$threadPHID
;
protected
$transactionPHID
;
protected
$previousTransactionPHID
;
protected
$corpus
;
protected
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