Commit 28194d1e authored by Steven Rosato's avatar Steven Rosato Committed by Benjamin Eberlei

Fix for DBAL-158, double precision not working with sqlite.

parent 7b22f397
...@@ -481,6 +481,7 @@ class SqlitePlatform extends AbstractPlatform ...@@ -481,6 +481,7 @@ class SqlitePlatform extends AbstractPlatform
'time' => 'time', 'time' => 'time',
'float' => 'float', 'float' => 'float',
'double' => 'float', 'double' => 'float',
'double precision' => 'float',
'real' => 'float', 'real' => 'float',
'decimal' => 'decimal', 'decimal' => 'decimal',
'numeric' => 'decimal', 'numeric' => 'decimal',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment