Skip to content

Commit

Permalink
fix pgsql/mssql/oracle missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jul 11, 2022
1 parent a277d56 commit 33dfee1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Schema/MigratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ protected function createDemoMigrator(string $table): Migrator

protected function isTableExist(string $table): bool
{
return $this->createSchemaManager()->tablesExist([$table]);
return $this->createSchemaManager()
->tablesExist([$this->getDatabasePlatform()->quoteSingleIdentifier($table)]);
}

public function testCreate(): void
Expand Down

0 comments on commit 33dfee1

Please sign in to comment.