Commit 7df036a6 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #67 from srosato/fix-sqlite-double-precision

Fix for DBAL-158, double precision not working with sqlite.
parents 5084e6bf 63b1213f
......@@ -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