From 22b2f881d13629a6ce608938d7d3399612efb4f0 Mon Sep 17 00:00:00 2001 From: Alexei Date: Thu, 11 Jul 2024 10:05:27 +0300 Subject: [PATCH] Fix issue getRawTableName moved to Quoter --- src/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Migrator.php b/src/Migrator.php index dfa60afc..75fc2b61 100644 --- a/src/Migrator.php +++ b/src/Migrator.php @@ -138,7 +138,7 @@ private function checkMigrationHistoryTable(): void private function createMigrationHistoryTable(): void { - $tableName = $this->db->getSchema()->getRawTableName($this->historyTable); + $tableName = $this->db->getQuoter()->getRawTableName($this->historyTable); $this->informer->beginCreateHistoryTable('Creating migration history table "' . $tableName . '"...'); $b = $this->createBuilder(new NullMigrationInformer());