diff options
Diffstat (limited to 'lib/private/DB/MissingIndexInformation.php')
-rw-r--r-- | lib/private/DB/MissingIndexInformation.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/private/DB/MissingIndexInformation.php b/lib/private/DB/MissingIndexInformation.php new file mode 100644 index 00000000000..99a81782858 --- /dev/null +++ b/lib/private/DB/MissingIndexInformation.php @@ -0,0 +1,24 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OC\DB; + +class MissingIndexInformation { + private array $listOfMissingIndices = []; + + public function addHintForMissingIndex(string $tableName, string $indexName): void { + $this->listOfMissingIndices[] = [ + 'tableName' => $tableName, + 'indexName' => $indexName + ]; + } + + public function getListOfMissingIndices(): array { + return $this->listOfMissingIndices; + } +} |