Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Decimal scale #935

Merged
merged 8 commits into from
Jul 27, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update unit-tests/DbDescribeTest.php
  • Loading branch information
dreamsxin committed Jul 26, 2013
commit 10b90b266b6297c2b567de7ec17e1ad1b32bb1a6
6 changes: 3 additions & 3 deletions unit-tests/DbDescribeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function getExpectedColumnsMysql()
'_type' => 3,
'_isNumeric' => true,
'_size' => 16,
'_scale' => 0,
'_scale' => 2,
'_unsigned' => false,
'_notNull' => true,
'_autoIncrement' => false,
Expand Down Expand Up @@ -318,7 +318,7 @@ public function getExpectedColumnsPostgresql()
'_type' => 3,
'_isNumeric' => true,
'_size' => 16,
'_scale' => 0,
'_scale' => 2,
'_unsigned' => false,
'_notNull' => true,
'_autoIncrement' => false,
Expand Down Expand Up @@ -480,7 +480,7 @@ public function getExpectedColumnsSqlite()
'_type' => 3,
'_isNumeric' => true,
'_size' => 16,
'_scale' => 0,
'_scale' => 2,
'_unsigned' => false,
'_notNull' => true,
'_autoIncrement' => false,
Expand Down