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>
pull/29996/head
Pytal 4 years ago
committed by Christopher Ng
parent
commit
ac5bc2277e
  1. 12
      core/Migrations/Version23000Date20211203110726.php

12
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;
}
}
Loading…
Cancel
Save