Commit 83db1210 authored by beberlei's avatar beberlei

Merge 33aeaadd from master

parents d6b698a8 33aeaadd
......@@ -371,4 +371,4 @@ class Comparator
return false;
}
}
\ No newline at end of file
}
......@@ -178,7 +178,7 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager
$autoincrement = true;
}
if (stripos($tableColumn['default'], 'NULL') !== null) {
if ($tableColumn['default'] == 'NULL') {
$tableColumn['default'] = null;
}
......
......@@ -583,6 +583,8 @@ class ComparatorTest extends \PHPUnit_Framework_TestCase
public function testDetectChangeIdentifierType()
{
$this->markTestSkipped('DBAL-2 was reopened, this test cannot work anymore.');
$tableA = new Table("foo");
$tableA->addColumn('id', 'integer', array('platformOptions' => array('autoincrement' => false)));
......
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