W3cubDocs

/Drupal 8

public function EntityStorageSchemaInterface::requiresEntityDataMigration

public EntityStorageSchemaInterface::requiresEntityDataMigration(EntityTypeInterface $entity_type, EntityTypeInterface $original)

Checks if existing data would be lost if the schema changes were applied.

If there are no schema changes needed, then no data needs to be migrated, but it is not the responsibility of this function to recheck what requiresEntityStorageSchemaChanges() checks. Rather, the meaning of what this function returns when requiresEntityStorageSchemaChanges() returns FALSE is undefined. Callers are expected to only call this function when requiresEntityStorageSchemaChanges() is TRUE.

This function can return FALSE if any of these conditions apply:

  • There are no existing entities for the entity type.
  • There are existing entities, but the schema changes can be applied without losing their data (e.g., if the schema changes can be performed by altering tables rather than dropping and recreating them).
  • The only entity data that would be lost are ones that are not valid for the new definition (e.g., if changing an entity type from revisionable to non-revisionable, then it's okay to drop data for the non-default revision).

When this function returns FALSE, site administrators will be unable to perform an automated update, and will instead need to perform a site migration or invoke some custom update process.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The updated entity type definition.

\Drupal\Core\Entity\EntityTypeInterface $original: The original entity type definition.

Return value

bool TRUE if data migration is required, FALSE otherwise.

See also

self::requiresEntityStorageSchemaChanges()

File

core/lib/Drupal/Core/Entity/Schema/EntityStorageSchemaInterface.php, line 70

Class

EntityStorageSchemaInterface
Defines the interface for entity storage schema handler classes.

Namespace

Drupal\Core\Entity\Schema

Code

public function requiresEntityDataMigration(EntityTypeInterface $entity_type, EntityTypeInterface $original);

© 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!Schema!EntityStorageSchemaInterface.php/function/EntityStorageSchemaInterface::requiresEntityDataMigration/8.1.x