not add unsigned to not numeric fields, fix broken test, add new test

This commit is contained in:
imsamurai 2013-11-17 23:10:53 +02:00
parent 2f6122cb01
commit 8bcfe452da
4 changed files with 8 additions and 3 deletions

View file

@ -46,6 +46,7 @@ class UnsignedFixture extends CakeTestFixture {
'ubiginteger' => array('type' => 'biginteger', 'length' => '20', 'default' => 3, 'unsigned' => true),
'float' => array('type' => 'float', 'length' => '4'),
'ufloat' => array('type' => 'float', 'length' => '4', 'unsigned' => true),
'string' => array('type' => 'string', 'length' => '4'),
'tableParameters' => array(
'engine' => 'MyISAM'
)