diff options
author | Josh <josh.t.richards@gmail.com> | 2024-02-25 13:46:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 13:46:50 -0500 |
commit | 7ce008873774fc938c52bc9b308611dae4c61cda (patch) | |
tree | dc4efad57d9d1652c0cdfd25fc4e0f4bd3fa26b4 /core/Command | |
parent | 34c9bfc767e1bafa7c708318e4050a5f4c9a772b (diff) | |
download | nextcloud-server-7ce008873774fc938c52bc9b308611dae4c61cda.tar.gz nextcloud-server-7ce008873774fc938c52bc9b308611dae4c61cda.zip |
fix(db): db-convert supports disabled apps but not removed ones
Signed-off-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to 'core/Command')
-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>'); } |