protected function SqlContentEntityStorageSchema::processRevisionTable

protected SqlContentEntityStorageSchema::processRevisionTable(ContentEntityTypeInterface $entity_type, array &$schema)

Processes the gathered schema for a base table.

Parameters

\Drupal\Core\Entity\ContentEntityTypeInterface $entity_type: The entity type.

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

Return value

array A partial schema array for the base table.

File

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

Class

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

Namespace

Drupal\Core\Entity\Sql

Code

protected function processRevisionTable(ContentEntityTypeInterface $entity_type, array &$schema) {
  $this->processIdentifierSchema($schema, $entity_type->getKey('revision'));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Sql!SqlContentEntityStorageSchema.php/function/SqlContentEntityStorageSchema::processRevisionTable/8.1.x