123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- namespace OC\Core\Migrations;
- use Closure;
- use OCP\DB\ISchemaWrapper;
- use OCP\Migration\IOutput;
- use OCP\Migration\SimpleMigrationStep;
- class Version27000Date20220613163520 extends SimpleMigrationStep {
- public function name(): string {
- return "Add mountpoint path to mounts table unique index";
- }
- public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
-
- $schema = $schemaClosure();
- $table = $schema->getTable('mounts');
- if ($table->hasIndex('mounts_user_root_index')) {
- $table->dropIndex('mounts_user_root_index');
-
- }
- return $schema;
- }
- }
|