You are here

protected function RngContactStorageSchema::hasSharedTableNameChanges in RNG Contact 8

@inheritDoc

Overrides SqlContentEntityStorageSchema::hasSharedTableNameChanges

File

src/RngContactStorageSchema.php, line 16

Class

RngContactStorageSchema
Defines the RNG Contact schema handler.

Namespace

Drupal\rng_contact

Code

protected function hasSharedTableNameChanges(EntityTypeInterface $entity_type, EntityTypeInterface $original) {
  if (drupal_static('rng_contact_update_8001')) {

    // We are changing the 'data_table', but the table never existed in the
    // first place. The annotation we set erroneously. Safely pretend nothing
    // changed, so the entity manager accepts the new value.
    // @see rng_contact_update_8001().
    return FALSE;
  }
  return parent::hasSharedTableNameChanges($entity_type, $original);
}