protected UserStorageSchema::processIdentifierSchema(&$schema, $key)
Processes the specified entity key.
Parameters
array $schema: The table schema, passed by reference.
string $key: The entity key name.
Overrides SqlContentEntityStorageSchema::processIdentifierSchema
File
- core/modules/user/src/UserStorageSchema.php, line 30
Class
- UserStorageSchema
- Defines the user schema handler.
Namespace
Drupal\user
Code
1 2 3 4 5 6 | protected function processIdentifierSchema(& $schema , $key ) { // The "users" table does not use serial identifiers. if ( $key != $this ->entityType->getKey( 'id' )) { parent::processIdentifierSchema( $schema , $key ); } } |
Please login to continue.