Skip to content

Commit 5c27204

Browse files
committed
WIP use full table name in Migrator
1 parent 7c231c9 commit 5c27204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Schema/Migrator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected function createSchemaManager(): AbstractSchemaManager
8282

8383
public function table(string $tableName): self
8484
{
85-
$tableName = preg_replace('~^.+\.~', '', $tableName);
85+
// $tableName = preg_replace('~^.+\.~', '', $tableName);
8686

8787
$this->table = new Table($this->getDatabasePlatform()->quoteIdentifier($tableName));
8888
if ($this->getDatabasePlatform() instanceof MySQLPlatform) {

0 commit comments

Comments
 (0)