diff options
Diffstat (limited to 'core/command/db')
-rw-r--r-- | core/command/db/converttype.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php index 170145940d3..47e824a3b1b 100644 --- a/core/command/db/converttype.php +++ b/core/command/db/converttype.php @@ -131,7 +131,12 @@ class ConvertType extends Command { // warn/fail if there are more tables in 'from' database $tables = array_diff($fromTables, $toTables); if (!empty($tables)) { - $output->writeln('<error>The following tables do NOT exist any more: '.join(', ', $tables).'</error>'); + $output->writeln('<comment>The following tables will not be converted:</comment>'); + $output->writeln($tables); + if (!$input->getOption('all-apps')) { + $output->writeln('<comment>Please note that tables belonging to available but currently not installed apps</comment>'); + $output->writeln('<comment>can be included by specifying the --all-apps option.</comment>'); + } /** @var $dialog \Symfony\Component\Console\Helper\DialogHelper */ $dialog = $this->getHelperSet()->get('dialog'); if (!$dialog->askConfirmation( |