From 9135b177bec70ffe648ed345172d0e3193346df0 Mon Sep 17 00:00:00 2001 From: Pytal <24800714+Pytal@users.noreply.github.com> Date: Thu, 9 Dec 2021 08:26:10 -0800 Subject: [PATCH] Update core/Migrations/Version23000Date20211203110726.php MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Co-authored-by: John Molakvoæ Signed-off-by: Christopher Ng --- core/Migrations/Version23000Date20211203110726.php | 12 ++++-------- 1 file 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; } } -- 2.39.5