Commit a4853e35 authored by Diego Oliveira's avatar Diego Oliveira

Adding the option of unsigned field.

parent 9f897bb9
......@@ -948,6 +948,7 @@ abstract class AbstractPlatform
if(strtolower($columnData['type']) == "string" && $columnData['length'] === null) {
$columnData['length'] = 255;
}
$columnData['unsigned'] = $column->getUnsigned();
$columnData['precision'] = $column->getPrecision();
$columnData['scale'] = $column->getScale();
$columnData['default'] = $column->getDefault();
......
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