Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108076361
DifferentialDiffProperty.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
Sun, Apr 13, 23:46
Size
574 B
Mime Type
text/x-php
Expires
Tue, Apr 15, 23:46 (2 d)
Engine
blob
Format
Raw Data
Handle
25518580
Attached To
rPH Phabricator
DifferentialDiffProperty.php
View Options
<?php
final
class
DifferentialDiffProperty
extends
DifferentialDAO
{
protected
$diffID
;
protected
$name
;
protected
$data
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'data'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'name'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'diffID'
=>
array
(
'columns'
=>
array
(
'diffID'
,
'name'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment