]> source.dussan.org Git - nextcloud-server.git/commitdiff
Missing things in database should be warning, not info 42013/head
authorCôme Chilliet <come.chilliet@nextcloud.com>
Thu, 23 Nov 2023 09:29:10 +0000 (10:29 +0100)
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>
Mon, 4 Dec 2023 16:23:25 +0000 (16:23 +0000)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
apps/settings/lib/SetupChecks/DatabaseHasMissingColumns.php
apps/settings/lib/SetupChecks/DatabaseHasMissingIndices.php
apps/settings/lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php

index 946f357a04bea0846331ff73df2e34f3be8b9671..b062eb493729e925502704935bbee34740d217a5 100644 (file)
@@ -81,7 +81,7 @@ class DatabaseHasMissingColumns implements ISetupCheck {
                        foreach ($missingColumns as $missingColumn) {
                                $list .= "\n".$this->l10n->t('Missing optional column "%s" in table "%s".', [$missingColumn['columnName'], $missingColumn['tableName']]);
                        }
-                       return SetupResult::info(
+                       return SetupResult::warning(
                                $this->l10n->t('The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running "occ db:add-missing-columns" those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.').$list
                        );
                }
index b19c3abb69028714b5fc26d5e1a8a2256f712d69..ccf6bbb52d0ec443003c42f47b5178e9ff0e8137 100644 (file)
@@ -81,7 +81,7 @@ class DatabaseHasMissingIndices implements ISetupCheck {
                        foreach ($missingIndices as $missingIndex) {
                                $list .= "\n".$this->l10n->t('Missing optional index "%s" in table "%s".', [$missingIndex['indexName'], $missingIndex['tableName']]);
                        }
-                       return SetupResult::info(
+                       return SetupResult::warning(
                                $this->l10n->t('The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running "occ db:add-missing-indices" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster.').$list
                        );
                }
index 9609fe117bb2e74d49b6760f1b9942367124b2ce..5ef65e63eff2b3dcb9ca18da0b1cb225bb906711 100644 (file)
@@ -81,7 +81,7 @@ class DatabaseHasMissingPrimaryKeys implements ISetupCheck {
                        foreach ($missingPrimaryKeys as $missingPrimaryKey) {
                                $list .= "\n".$this->l10n->t('Missing primary key on table "%s".', [$missingPrimaryKey['tableName']]);
                        }
-                       return SetupResult::info(
+                       return SetupResult::warning(
                                $this->l10n->t('The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running "occ db:add-missing-primary-keys" those missing primary keys could be added manually while the instance keeps running.').$list
                        );
                }