Browse Source

Update core/Migrations/Version23000Date20211203110726.php

Co-authored-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Signed-off-by: Christopher Ng <chrng8@gmail.com>
tags/v24.0.0beta1
Pytal 2 years ago
parent
commit
ac5bc2277e
1 changed files with 4 additions and 8 deletions
  1. 4
    8
      core/Migrations/Version23000Date20211203110726.php

+ 4
- 8
core/Migrations/Version23000Date20211203110726.php View File

@@ -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;
}
}

Loading…
Cancel
Save