Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102751441
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
Sun, Feb 23, 19:55
Size
842 B
Mime Type
text/x-php
Expires
Tue, Feb 25, 19:55 (2 d)
Engine
blob
Format
Raw Data
Handle
24381286
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