Fixing a failing test caused by changes in fixture schema.

This commit is contained in:
mark_story 2011-03-20 16:06:23 -04:00
parent da84f04bb0
commit dd9ebd8a60

View file

@ -190,6 +190,7 @@ class TestAppSchema extends CakeSchema {
var $datatypes = array(
'id' => array('type' => 'integer', 'null' => false, 'default' => 0, 'key' => 'primary'),
'float_field' => array('type' => 'float', 'null' => false, 'length' => '5,2', 'default' => ''),
'bool' => array('type' => 'boolean', 'null' => false, 'default' => false),
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => true)),
'tableParameters' => array()
);