change position from afterDefault to beforeDefault during to wrong order, add test

This commit is contained in:
imsamurai 2013-11-14 01:36:27 +02:00
parent e35823e72a
commit fd64d952b5
2 changed files with 11 additions and 1 deletions

View file

@ -88,7 +88,7 @@ class Mysql extends DboSource {
'collate' => array('value' => 'COLLATE', 'quote' => false, 'join' => ' ', 'column' => 'Collation', 'position' => 'beforeDefault'),
'comment' => array('value' => 'COMMENT', 'quote' => true, 'join' => ' ', 'column' => 'Comment', 'position' => 'afterDefault'),
'unsigned' => array(
'value' => 'UNSIGNED', 'quote' => false, 'join' => ' ', 'column' => false, 'position' => 'afterDefault',
'value' => 'UNSIGNED', 'quote' => false, 'join' => ' ', 'column' => false, 'position' => 'beforeDefault',
'noVal' => true,
'options' => array(true),
'types' => array('integer', 'float', 'biginteger', 'numeric')

View file

@ -3253,6 +3253,16 @@ class MysqlTest extends CakeTestCase {
'unsigned' => true
),
'`testName` decimal UNSIGNED'
),
//set #7
array(
array(
'name' => 'testName',
'type' => 'numeric',
'unsigned' => true,
'default' => 1
),
'`testName` decimal UNSIGNED DEFAULT 1'
)
);
}