Merge pull request #43824 from nextcloud/fix/db/occ-db-convert-disabled-apps

fix(db): db-convert supports disabled apps but not removed ones
cache-move-select-children
Josh 2 months ago committed by GitHub
commit 20953d0374
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -199,7 +199,7 @@ class ConvertType extends Command implements CompletionAwareInterface {
$output->writeln('<comment>The following tables will not be converted:</comment>');
$output->writeln($extraFromTables);
if (!$input->getOption('all-apps')) {
$output->writeln('<comment>Please note that tables belonging to available but currently not installed apps</comment>');
$output->writeln('<comment>Please note that tables belonging to disabled (but not removed) apps</comment>');
$output->writeln('<comment>can be included by specifying the --all-apps option.</comment>');
}

Loading…
Cancel
Save