diff options
author | Josh <josh.t.richards@gmail.com> | 2024-02-25 13:46:50 -0500 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-03-07 15:19:05 +0000 |
commit | 5cbb6fd9d8e61977eebf97bb02e47091f19591e7 (patch) | |
tree | 7279bfddd0e4567552a08a0073c8e5897e9f0755 | |
parent | da7bdd26c259931a30c9964a454bc48050931f9b (diff) | |
download | nextcloud-server-5cbb6fd9d8e61977eebf97bb02e47091f19591e7.tar.gz nextcloud-server-5cbb6fd9d8e61977eebf97bb02e47091f19591e7.zip |
fix(db): db-convert supports disabled apps but not removed ones
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | core/Command/Db/ConvertType.php | 2 |
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>'); } |