Commit 9830694c authored by Steve Müller's avatar Steve Müller

fix code style

parent eef795a4
...@@ -817,8 +817,7 @@ class MySqlPlatform extends AbstractPlatform ...@@ -817,8 +817,7 @@ class MySqlPlatform extends AbstractPlatform
*/ */
public function getDecimalTypeDeclarationSQL(array $columnDef) public function getDecimalTypeDeclarationSQL(array $columnDef)
{ {
$declaration = parent::getDecimalTypeDeclarationSQL($columnDef); return parent::getDecimalTypeDeclarationSQL($columnDef) . $this->getUnsignedDeclaration($columnDef);
return $declaration . $this->getUnsignedDeclaration($columnDef);
} }
/** /**
......
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