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:
authorPytal <24800714+Pytal@users.noreply.github.com>2021-12-09 19:26:10 +0300
committerChristopher Ng <chrng8@gmail.com>2021-12-09 19:32:53 +0300
commitac5bc2277ebf0f8988478c5bb231d51bf218bf5b (patch)
tree65ce59fd8a72ba448aedd81a44eae9e7499461bf /core/Migrations
parente224401a62f78466d38852c7765dc0811133e268 (diff)
Update core/Migrations/Version23000Date20211203110726.php
Co-authored-by: John Molakvoæ <skjnldsv@users.noreply.github.com> Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version23000Date20211203110726.php12
1 files changed, 4 insertions, 8 deletions
diff --git a/core/Migrations/Version23000Date20211203110726.php b/core/Migrations/Version23000Date20211203110726.php
index 33685e872a3..caeb55a4db3 100644
--- a/core/Migrations/Version23000Date20211203110726.php
+++ b/core/Migrations/Version23000Date20211203110726.php
@@ -44,15 +44,11 @@ class Version23000Date20211203110726 extends SimpleMigrationStep {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
- if ($schema->hasTable(self::TABLE_NAME)) {
- $table = $schema->getTable(self::TABLE_NAME);
- if ($table->hasIndex('user_id')) {
- $table->renameIndex('user_id', self::TABLE_NAME . '_user_id_idx');
- return $schema;
- }
- return null;
+ $table = $schema->getTable(self::TABLE_NAME);
+ if ($table->hasIndex('user_id')) {
+ $table->renameIndex('user_id', self::TABLE_NAME . '_user_id_idx');
+ return $schema;
}
-
return null;
}
}