You are here

protected function SqlContentEntityStorageSchema::processIdentifierSchema in Drupal 8

Same name and namespace in other branches
  1. 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.

2 calls to SqlContentEntityStorageSchema::processIdentifierSchema()
SqlContentEntityStorageSchema::getSharedTableFieldSchema in core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php
Gets the schema for a single field definition.
UserStorageSchema::processIdentifierSchema in core/modules/user/src/UserStorageSchema.php
Processes the specified entity key.
1 method overrides SqlContentEntityStorageSchema::processIdentifierSchema()
UserStorageSchema::processIdentifierSchema in core/modules/user/src/UserStorageSchema.php
Processes the specified entity key.

File

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

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']);
}