Version22000Date20210216080825.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OC\Core\Migrations;
  8. use Closure;
  9. use OCP\DB\ISchemaWrapper;
  10. use OCP\Migration\IOutput;
  11. use OCP\Migration\SimpleMigrationStep;
  12. /**
  13. * Auto-generated migration step: Please modify to your needs!
  14. */
  15. class Version22000Date20210216080825 extends SimpleMigrationStep {
  16. /**
  17. * @param IOutput $output
  18. * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
  19. * @param array $options
  20. * @return null|ISchemaWrapper
  21. */
  22. public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
  23. /** @var ISchemaWrapper $schema */
  24. $schema = $schemaClosure();
  25. $table = $schema->getTable('appconfig');
  26. if ($table->hasIndex('appconfig_appid_key')) {
  27. $table->dropIndex('appconfig_appid_key');
  28. }
  29. $table = $schema->getTable('collres_accesscache');
  30. if ($table->hasIndex('collres_user_coll')) {
  31. $table->dropIndex('collres_user_coll');
  32. }
  33. $table = $schema->getTable('mounts');
  34. if ($table->hasIndex('mounts_user_index')) {
  35. $table->dropIndex('mounts_user_index');
  36. }
  37. return $schema;
  38. }
  39. }