Commit 818622e6 authored by Marco Pivetta's avatar Marco Pivetta

Merge pull request #587 from JeroenDeDauw/faildoc

Remove plain wrong type hint where none is needed to begin with
parents 2f002700 1bbd3a7e
......@@ -247,7 +247,6 @@ class SQLServerPlatform extends AbstractPlatform
// @todo does other code breaks because of this?
// force primary keys to be not null
foreach ($columns as &$column) {
/** @var $column \Doctrine\DBAL\Schema\Column */
if (isset($column['primary']) && $column['primary']) {
$column['notnull'] = true;
}
......
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