diff options
author | Andreas Fischer <bantu@owncloud.com> | 2014-03-31 20:51:30 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2014-03-31 20:51:30 +0200 |
commit | b39a74ff6cc951e8334462ee08728b0d270d6f3a (patch) | |
tree | 829c67e1a2e9a8611605c359980382213036251b /core/command | |
parent | f9853b253c6ecb9a77a9d1c9006c5f548cdfd04e (diff) | |
download | nextcloud-server-b39a74ff6cc951e8334462ee08728b0d270d6f3a.tar.gz nextcloud-server-b39a74ff6cc951e8334462ee08728b0d270d6f3a.zip |
Some more colors.
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/db/converttype.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php index 2a4e6747e65..464a5db3cdf 100644 --- a/core/command/db/converttype.php +++ b/core/command/db/converttype.php @@ -102,14 +102,14 @@ class ConvertType extends Command { $schemaManager = $toDB->getSchemaManager(); $toTables = $schemaManager->listTableNames(); if (!empty($toTables)) { - $output->writeln('Clearing schema in new database'); + $output->writeln('<info>Clearing schema in new database</info>'); } foreach($toTables as $table) { $schemaManager->dropTable($table); } } - $output->writeln('Creating schema in new database'); + $output->writeln('<info>Creating schema in new database</info>'); $schemaManager = new \OC\DB\MDB2SchemaManager($toDB); $schemaManager->createDbFromStructure(\OC::$SERVERROOT.'/db_structure.xml'); $apps = \OC_App::getEnabledApps(); |