Skip to content

Commit 00b3cae

Browse files
Using complete insert for mysqldump when appending migration dump to schema file (#48126)
Co-authored-by: László Fodor <laszlo.fodor@byborgenterprises.com>
1 parent 256f497 commit 00b3cae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Database/Schema/MySqlSchemaState.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function removeAutoIncrementingState(string $path)
5353
protected function appendMigrationData(string $path)
5454
{
5555
$process = $this->executeDumpProcess($this->makeProcess(
56-
$this->baseDumpCommand().' '.$this->migrationTable.' --no-create-info --skip-extended-insert --skip-routines --compact'
56+
$this->baseDumpCommand().' '.$this->migrationTable.' --no-create-info --skip-extended-insert --skip-routines --compact --complete-insert'
5757
), null, array_merge($this->baseVariables($this->connection->getConfig()), [
5858
//
5959
]));

0 commit comments

Comments
 (0)