Commit 0f428894 authored by Steve Müller's avatar Steve Müller

add missing binary_float and binary_double type mappings

parent d79ce18e
......@@ -862,6 +862,8 @@ LEFT JOIN user_cons_columns r_cols
'timestamp' => 'datetime',
'timestamptz' => 'datetimetz',
'float' => 'float',
'binary_float' => 'float',
'binary_double' => 'float',
'long' => 'string',
'clob' => 'text',
'nclob' => 'text',
......
......@@ -165,6 +165,8 @@ class OracleSchemaManager extends AbstractSchemaManager
$length = null;
break;
case 'float':
case 'binary_float':
case 'binary_double':
$precision = $tableColumn['data_precision'];
$scale = $tableColumn['data_scale'];
$length = null;
......
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