We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dfe43b commit daaaa08Copy full SHA for daaaa08
1 file changed
src/Engine/MysqlEngine.php
@@ -64,7 +64,7 @@ public function export($file, $options = [])
64
{
65
$databaseName = $this->_database['database'];
66
$baseArgs = $this->_getBaseArguments();
67
- $command = "mysqldump $baseArgs $databaseName | grep -v -a '/*!50013 DEFINER'";
+ $command = "mysqldump --extended-insert=FALSE $baseArgs $databaseName | grep -v -a '/*!50013 DEFINER'";
68
if (!empty($file)) {
69
$command .= " > $file";
70
}
0 commit comments