Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98287497
PhabricatorCustomFieldStorage.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
Sat, Jan 11, 19:20
Size
599 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 19:20 (2 d)
Engine
blob
Format
Raw Data
Handle
23553207
Attached To
rPH Phabricator
PhabricatorCustomFieldStorage.php
View Options
<?php
abstract
class
PhabricatorCustomFieldStorage
extends
PhabricatorLiskDAO
{
protected
$objectPHID
;
protected
$fieldIndex
;
protected
$fieldValue
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'fieldIndex'
=>
'bytes12'
,
'fieldValue'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'fieldIndex'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment