From 7ce008873774fc938c52bc9b308611dae4c61cda Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 25 Feb 2024 13:46:50 -0500 Subject: [PATCH] fix(db): db-convert supports disabled apps but not removed ones Signed-off-by: Josh --- core/Command/Db/ConvertType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php index a1bfbd1fd3ea5..db618e938c007 100644 --- a/core/Command/Db/ConvertType.php +++ b/core/Command/Db/ConvertType.php @@ -199,7 +199,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $output->writeln('The following tables will not be converted:'); $output->writeln($extraFromTables); if (!$input->getOption('all-apps')) { - $output->writeln('Please note that tables belonging to available but currently not installed apps'); + $output->writeln('Please note that tables belonging to disabled (but not removed) apps'); $output->writeln('can be included by specifying the --all-apps option.'); }