Commit b52e041f authored by Juozas Kaziukenas's avatar Juozas Kaziukenas

Fixed column length and datetime2 support

parent 3d55dc8e
...@@ -165,7 +165,7 @@ class MsSqlSchemaManager extends AbstractSchemaManager ...@@ -165,7 +165,7 @@ class MsSqlSchemaManager extends AbstractSchemaManager
'unique' => false, // @todo 'unique' => false, // @todo
'autoincrement' => $autoincrement, 'autoincrement' => $autoincrement,
); );
return new Column($tableColumn['COLUMN_NAME'], \Doctrine\DBAL\Types\Type::getType($type), $options); return new Column($tableColumn['COLUMN_NAME'], \Doctrine\DBAL\Types\Type::getType($type), $options);
} }
......
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