Merge pull request #44065 from nextcloud/backport/43824/stable28

[stable28] fix(db): db-convert supports disabled apps but not removed ones
This commit is contained in:
John Molakvoæ 2024-03-08 00:05:02 +01:00 committed by GitHub
commit f8699ecfa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>');
}