Fixing a failing postgres test

This commit is contained in:
Jose Lorenzo Rodriguez 2011-09-03 17:09:41 -04:30
parent 7003edeb8f
commit fcf58371fd

View file

@ -676,8 +676,9 @@ class DboPostgresTest extends CakeTestCase {
'group2' => array('type' => 'integer', 'null' => true)
)
));
$this->Dbo->rawQuery($this->Dbo->dropSchema($schema1));
$this->Dbo->rawQuery($this->Dbo->createSchema($schema1));
$this->Dbo->rawQuery($this->Dbo->dropSchema($schema1));
$schema2 = new CakeSchema(array(
'name' => 'AlterTest2',