Skip to content

Commit

Permalink
Merge pull request #44065 from nextcloud/backport/43824/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(db): db-convert supports disabled apps but not removed ones
  • Loading branch information
skjnldsv committed Mar 7, 2024
2 parents da7bdd2 + 5cbb6fd commit f8699ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Command/Db/ConvertType.php
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 f8699ec

Please sign in to comment.