Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111181975
HarbormasterScratchTable.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, Apr 30, 01:45
Size
842 B
Mime Type
text/x-php
Expires
Fri, May 2, 01:45 (2 d)
Engine
blob
Format
Raw Data
Handle
25857030
Attached To
rPH Phabricator
HarbormasterScratchTable.php
View Options
<?php
/**
* This is just a test table that unit tests can use if they need to test
* generic database operations. It won't change and break tests and stuff, and
* mistakes in test construction or isolation won't impact the application in
* any way.
*/
final
class
HarbormasterScratchTable
extends
HarbormasterDAO
{
protected
$data
;
protected
$bigData
;
protected
$nonmutableData
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'data'
=>
'text64'
,
'bigData'
=>
'text?'
,
'nonmutableData'
=>
'text64?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'data'
=>
array
(
'columns'
=>
array
(
'data'
),
),
),
self
::
CONFIG_NO_MUTATE
=>
array
(
'nonmutableData'
,
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment