public function uninstallFieldStorageDefinition(FieldStorageDefinitionInterface
$storage_definition) { $this->
clearCachedDefinitions();
$this->fieldStorageDefinitionListener->
onFieldStorageDefinitionDelete($storage_definition);
} /**
* {@inheritdoc}
*/
public function getChangeList() { $this->entityTypeManager->
useCaches(FALSE
);
$this->entityFieldManager->
useCaches(FALSE
);
$change_list =
[];
foreach ($this->entityTypeManager->
getDefinitions() as $entity_type_id =>
$entity_type) { $original =
$this->entityLastInstalledSchemaRepository->
getLastInstalledDefinition($entity_type_id);
// @todo Support non-storage-schema-changing definition updates too:
// https://www.drupal.org/node/2336895.
if (!
$original) { $change_list[$entity_type_id]['entity_type'
] =
static::DEFINITION_CREATED;
}