Skip to content

Commit 3bfa20d

Browse files
author
Paul Rogers
committed
fix(MigrateDumpCommand): Remove temporary, fake switch intended only for momentary testing.
1 parent da81c00 commit 3bfa20d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/MigrateDumpCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private static function mysqlDump(array $db_config, string $schema_sql_path) : i
7272
// Not including connection name in file since typically only one DB.
7373
// Excluding any hash or date suffix since only current is relevant.
7474
$command_prefix = 'set -o pipefail &&'
75-
. ' mysqldump --routines --skip-add-drop-table --fake'
75+
. ' mysqldump --routines --skip-add-drop-table'
7676
. ' --skip-add-locks --skip-comments --skip-set-charset --tz-utc'
7777
. ' --host=' . escapeshellarg($db_config['host'])
7878
. ' --port=' . escapeshellarg($db_config['port'])

0 commit comments

Comments
 (0)