Commit 63b1213f authored by Steven Rosato's avatar Steven Rosato

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

parent 5084e6bf
......@@ -481,6 +481,7 @@ class SqlitePlatform extends AbstractPlatform
'time' => 'time',
'float' => 'float',
'double' => 'float',
'double precision' => 'float',
'real' => 'float',
'decimal' => '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