mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
more tinyint smallint tests in MySQL
This commit is contained in:
parent
4fc8f7d919
commit
58078e77e1
1 changed files with 20 additions and 0 deletions
|
@ -3376,6 +3376,26 @@ SQL;
|
|||
'default' => 1
|
||||
),
|
||||
'`testName` decimal UNSIGNED DEFAULT 1'
|
||||
),
|
||||
//set #9
|
||||
array(
|
||||
array(
|
||||
'name' => 'testName',
|
||||
'type' => 'smallint',
|
||||
'length' => 6,
|
||||
'unsigned' => true
|
||||
),
|
||||
'`testName` smallint(6) UNSIGNED'
|
||||
),
|
||||
//set #10
|
||||
array(
|
||||
array(
|
||||
'name' => 'testName',
|
||||
'type' => 'tinyint',
|
||||
'length' => 4,
|
||||
'unsigned' => true
|
||||
),
|
||||
'`testName` tinyint(4) UNSIGNED'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue