You are here

protected function SqlContentEntityStorageSchema::addUniqueKey in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::addUniqueKey()
  2. 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::addUniqueKey()

Creates a unique key, dropping it if already existing.

Parameters

string $table: The table name.

string $name: The index name.

array $specifier: The unique fields.

See also

\Drupal\Core\Database\Schema::addUniqueKey()

File

core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 2536

Class

SqlContentEntityStorageSchema
Defines a schema handler that supports revisionable, translatable entities.

Namespace

Drupal\Core\Entity\Sql

Code

protected function addUniqueKey($table, $name, array $specifier) {
  $schema_handler = $this->database
    ->schema();
  $schema_handler
    ->dropUniqueKey($table, $name);
  $schema_handler
    ->addUniqueKey($table, $name, $specifier);
}