Skip to content

Commit 33dfee1

Browse files
committed
fix pgsql/mssql/oracle missing quote
1 parent a277d56 commit 33dfee1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Schema/MigratorTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ protected function createDemoMigrator(string $table): Migrator
3535

3636
protected function isTableExist(string $table): bool
3737
{
38-
return $this->createSchemaManager()->tablesExist([$table]);
38+
return $this->createSchemaManager()
39+
->tablesExist([$this->getDatabasePlatform()->quoteSingleIdentifier($table)]);
3940
}
4041

4142
public function testCreate(): void

0 commit comments

Comments
 (0)