Skip to content

Commit

Permalink
Fixing a failing test caused by changes in fixture schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 20, 2011
1 parent da84f04 commit dd9ebd8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cake/tests/cases/libs/model/cake_schema.test.php
Expand Up @@ -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()
);
Expand Down

0 comments on commit dd9ebd8

Please sign in to comment.