Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92489308
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, Nov 20, 18:31
Size
842 B
Mime Type
text/x-php
Expires
Fri, Nov 22, 18:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22449456
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