diff --git a/README.md b/README.md index e4af66df..28a59d90 100644 --- a/README.md +++ b/README.md @@ -783,6 +783,7 @@ Options: | `--git-friendly` | Use one insert statement, but with line breaks instead of separate insert statements. | | `--human-readable` | Use a single insert with column names per row. | | `--include` | Tables to include entirely to the dump (default: all tables are included) | +| `--keep-definer` | Do not replace DEFINER in dump with CURRENT_USER | | `--keep-column-statistics` | Retains `column statistics` table in `mysqldump` | | `--no-single-transaction` | Do not use single-transaction (not recommended, this is blocking) | | `--no-tablespaces` | Use this option if you want to create a dump without having the PROCESS privilege. | diff --git a/src/N98/Magento/Command/Database/DumpCommand.php b/src/N98/Magento/Command/Database/DumpCommand.php index df5f3a8a..78e2a14e 100644 --- a/src/N98/Magento/Command/Database/DumpCommand.php +++ b/src/N98/Magento/Command/Database/DumpCommand.php @@ -147,7 +147,7 @@ protected function configure() 'keep-definer', null, InputOption::VALUE_NONE, - 'Do not remove DEFINER from dump' + 'Do not replace DEFINER in dump with CURRENT_USER' ) ->setDescription('Dumps database with mysqldump cli client');