Skip to content

Commit

Permalink
Merge pull request #43824 from nextcloud/fix/db/occ-db-convert-disabl…
Browse files Browse the repository at this point in the history
…ed-apps

fix(db): db-convert supports disabled apps but not removed ones
  • Loading branch information
joshtrichards authored Mar 7, 2024
2 parents 7b7fc30 + 7ce0088 commit 20953d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Command/Db/ConvertType.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$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>');
}

Expand Down

0 comments on commit 20953d0

Please sign in to comment.