Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-01-19 22:54:07 +0300
committerMorris Jobke <hey@morrisjobke.de>2021-01-20 11:34:41 +0300
commit3d61adc9081fc766d466bb77ad912a7ada9a2eb5 (patch)
tree42cdd819624b942a7e58d13d7d165eb2c7b0e6a0 /core/Migrations
parenta7a60de228358841eb0d50ba387e027691491afb (diff)
Drop authtoken_version_index
The index was used when deleting old tokens. On top of that the index is of course not that great since the version is either 1 or 2. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version14000Date20180518120534.php1
-rw-r--r--core/Migrations/Version21000Date20210119195004.php55
2 files changed, 55 insertions, 1 deletions
diff --git a/core/Migrations/Version14000Date20180518120534.php b/core/Migrations/Version14000Date20180518120534.php
index 565a7fab707..4c8d857c3b8 100644
--- a/core/Migrations/Version14000Date20180518120534.php
+++ b/core/Migrations/Version14000Date20180518120534.php
@@ -48,7 +48,6 @@ class Version14000Date20180518120534 extends SimpleMigrationStep {
'unsigned' => true,
]);
$table->addIndex(['uid'], 'authtoken_uid_index');
- $table->addIndex(['version'], 'authtoken_version_index');
return $schema;
}
diff --git a/core/Migrations/Version21000Date20210119195004.php b/core/Migrations/Version21000Date20210119195004.php
new file mode 100644
index 00000000000..0fa211f9f22
--- /dev/null
+++ b/core/Migrations/Version21000Date20210119195004.php
@@ -0,0 +1,55 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright Copyright (c) 2020 Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Core\Migrations;
+
+use Closure;
+use OCP\DB\ISchemaWrapper;
+use OCP\Migration\IOutput;
+use OCP\Migration\SimpleMigrationStep;
+
+/**
+ * Auto-generated migration step: Please modify to your needs!
+ */
+class Version21000Date20210119195004 extends SimpleMigrationStep {
+ /**
+ * @param IOutput $output
+ * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
+ * @param array $options
+ * @return null|ISchemaWrapper
+ */
+ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
+ /** @var ISchemaWrapper $schema */
+ $schema = $schemaClosure();
+
+ $table = $schema->getTable('authtoken');
+ if ($table->hasIndex('authtoken_version_index')) {
+ $table->dropIndex('authtoken_version_index');
+ }
+
+ return $schema;
+ }
+}