4 * This is just a test table that unit tests can use if they need to test
5 * generic database operations. It won't change and break tests and stuff, and
6 * mistakes in test construction or isolation won't impact the application in
9 final class HarbormasterScratchTable
extends HarbormasterDAO
{
13 protected $nonmutableData;
15 protected function getConfiguration() {
17 self
::CONFIG_COLUMN_SCHEMA
=> array(
20 'nonmutableData' => 'text64?',
22 self
::CONFIG_KEY_SCHEMA
=> array(
24 'columns' => array('data'),
27 self
::CONFIG_NO_MUTATE
=> array(
30 ) + parent
::getConfiguration();