mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-04 02:22:39 +00:00
Decimal support for SQLite. #3171
This commit is contained in:
parent
e0eb8f8e18
commit
c74c8d49a1
2 changed files with 8 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue