mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Fixing a failing test caused by changes in fixture schema.
This commit is contained in:
parent
da84f04bb0
commit
dd9ebd8a60
1 changed files with 1 additions and 0 deletions
|
@ -190,6 +190,7 @@ class TestAppSchema extends CakeSchema {
|
||||||
var $datatypes = array(
|
var $datatypes = array(
|
||||||
'id' => array('type' => 'integer', 'null' => false, 'default' => 0, 'key' => 'primary'),
|
'id' => array('type' => 'integer', 'null' => false, 'default' => 0, 'key' => 'primary'),
|
||||||
'float_field' => array('type' => 'float', 'null' => false, 'length' => '5,2', 'default' => ''),
|
'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)),
|
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => true)),
|
||||||
'tableParameters' => array()
|
'tableParameters' => array()
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue