12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- namespace OC\Core\Migrations;
- use Closure;
- use OCP\DB\ISchemaWrapper;
- use OCP\Migration\IOutput;
- use OCP\Migration\SimpleMigrationStep;
- class Version21000Date20210309185127 extends SimpleMigrationStep {
-
- public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
-
- $schema = $schemaClosure();
- $table = $schema->getTable('known_users');
- if (!$table->hasIndex('ku_known_user')) {
- $table->addIndex(['known_user'], 'ku_known_user');
- return $schema;
- }
- return null;
- }
- }
|