array('type' => 'integer', 'null'=> false, 'default'=> 0, 'key' => 'primary'), 'float_field' => array('type' => 'float', 'length' => '5,2', 'null' => false, 'default' => null), 'bool' => array('type' => 'boolean', 'null' => false, 'default' => false), ); /** * records property * * @var array * @access public */ var $records = array( array('id' => 1, 'float_field' => 42.23, 'bool' => false), ); }