diff --git a/framework/core/src/Database/Migrator.php b/framework/core/src/Database/Migrator.php index 200745e3b..03b0dde1a 100644 --- a/framework/core/src/Database/Migrator.php +++ b/framework/core/src/Database/Migrator.php @@ -265,7 +265,9 @@ class Migrator foreach (explode(';', $dump) as $statement) { $statement = trim($statement); - if (empty($statement) || substr($statement, 0, 2) === '/*') continue; + if (empty($statement) || substr($statement, 0, 2) === '/*') { + continue; + } $statement = str_replace( 'db_prefix_',