We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a277d56 commit 33dfee1Copy full SHA for 33dfee1
tests/Schema/MigratorTest.php
@@ -35,7 +35,8 @@ protected function createDemoMigrator(string $table): Migrator
35
36
protected function isTableExist(string $table): bool
37
{
38
- return $this->createSchemaManager()->tablesExist([$table]);
+ return $this->createSchemaManager()
39
+ ->tablesExist([$this->getDatabasePlatform()->quoteSingleIdentifier($table)]);
40
}
41
42
public function testCreate(): void
0 commit comments