You are here

public function FieldableEdgeEntityStorageBase::requiresFieldStorageSchemaChanges in Apigee Edge 8

Checks if the changes to the storage definition requires schema changes.

Parameters

\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The updated field storage definition.

\Drupal\Core\Field\FieldStorageDefinitionInterface $original: The original field storage definition.

Return value

bool TRUE if storage schema changes are required, FALSE otherwise.

Overrides DynamicallyFieldableEntityStorageSchemaInterface::requiresFieldStorageSchemaChanges

File

src/Entity/Storage/FieldableEdgeEntityStorageBase.php, line 38

Class

FieldableEdgeEntityStorageBase
Base class for fieldable Apigee Edge entities.

Namespace

Drupal\apigee_edge\Entity\Storage

Code

public function requiresFieldStorageSchemaChanges(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original) {
  return FALSE;
}