You are here

protected function SqlContentEntityStorageSchema::processIdentifierSchema 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::processIdentifierSchema()
  2. 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::processIdentifierSchema()

Processes the specified entity key.

Parameters

array $schema: The table schema, passed by reference.

string $key: The entity key name.

1 call to SqlContentEntityStorageSchema::processIdentifierSchema()
SqlContentEntityStorageSchema::getSharedTableFieldSchema in core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php
Gets the schema for a single field definition.

File

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

Class

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

Namespace

Drupal\Core\Entity\Sql

Code

protected function processIdentifierSchema(&$schema, $key) {
  if ($schema['fields'][$key]['type'] == 'int') {
    $schema['fields'][$key]['type'] = 'serial';
  }
  $schema['fields'][$key]['not null'] = TRUE;
  unset($schema['fields'][$key]['default']);
}