Merge pull request #1018 from chandon/master
DBAL-878 Wrong mapping type
This commit is contained in:
commit
e8e86205f5
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ class DatabaseDriver implements MappingDriver
|
|||
$fieldMapping = array(
|
||||
'fieldName' => $this->getFieldNameForColumn($tableName, $column->getName(), false),
|
||||
'columnName' => $column->getName(),
|
||||
'type' => strtolower((string) $column->getType()),
|
||||
'type' => $column->getType()->getName(),
|
||||
'nullable' => ( ! $column->getNotNull()),
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue