Decimal support for SQLite. #3171

This commit is contained in:
U-Zyn Chua 2013-09-28 14:36:55 +08:00
parent e0eb8f8e18
commit c74c8d49a1
2 changed files with 8 additions and 1 deletions

View file

@ -363,6 +363,12 @@ class SqliteTest extends CakeTestCase {
'default' => '',
'length' => '5,2',
),
'decimal_field' => array(
'type' => 'decimal',
'null' => true,
'default' => '0.000',
'length' => '6,3',
),
'huge_int' => array(
'type' => 'biginteger',
'null' => true,