aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-03-07 10:17:45 -0500
committerGitHub <noreply@github.com>2024-03-07 10:17:45 -0500
commit20953d0374f434e0901c231f757751b954efca4d (patch)
treee986f332e19e2605c0f254c0586666a53106ba22 /core
parent7b7fc307b68780b5a578f77013b8c3b4e7677543 (diff)
parent7ce008873774fc938c52bc9b308611dae4c61cda (diff)
downloadnextcloud-server-20953d0374f434e0901c231f757751b954efca4d.tar.gz
nextcloud-server-20953d0374f434e0901c231f757751b954efca4d.zip
Merge pull request #43824 from nextcloud/fix/db/occ-db-convert-disabled-apps
fix(db): db-convert supports disabled apps but not removed ones
Diffstat (limited to 'core')
-rw-r--r--core/Command/Db/ConvertType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php
index a1bfbd1fd3e..db618e938c0 100644
--- a/core/Command/Db/ConvertType.php
+++ b/core/Command/Db/ConvertType.php
@@ -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>');
}