Corrected PHP type for "decimal" mapping type
"Basic Mapping" documentation says: "decimal: Type that maps a SQL DECIMAL to a PHP string."
This commit is contained in:
parent
a19106b03d
commit
3c613b9c02
@ -152,7 +152,7 @@ class EntityGenerator
|
||||
Type::SMALLINT => 'integer',
|
||||
Type::TEXT => 'string',
|
||||
Type::BLOB => 'string',
|
||||
Type::DECIMAL => 'float',
|
||||
Type::DECIMAL => 'string',
|
||||
Type::JSON_ARRAY => 'array',
|
||||
Type::SIMPLE_ARRAY => 'array',
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user