From 4908d4399e2eb717e7c8b8ac3deead02b18c667c Mon Sep 17 00:00:00 2001 From: michalsn Date: Mon, 7 Oct 2019 19:32:46 +0200 Subject: [PATCH] [ci skip] comment update --- system/Database/MigrationRunner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Database/MigrationRunner.php b/system/Database/MigrationRunner.php index b61749df635a..1dbae84336c6 100644 --- a/system/Database/MigrationRunner.php +++ b/system/Database/MigrationRunner.php @@ -1020,7 +1020,7 @@ protected function migrate($direction, $migration): bool // Determine DBGroup to use $group = $instance->getDBGroup() ?? config('Database')->defaultGroup; - // Skip if migration if group filteing was set + // Skip migration if group filtering was set if ($direction === 'up' && ! is_null($this->groupFilter) && $this->groupFilter !== $group) { $this->groupSkip = true;