mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing a failing postgres test
This commit is contained in:
parent
7003edeb8f
commit
fcf58371fd
1 changed files with 2 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue