- Issue created by @joe_carvajal
- 🇬🇧United Kingdom niklp Nottingham
To work around this, we simply deleted the field, which was empty for us.
** NB this might not apply as well to other users! **
- 🇨🇭Switzerland berdir Switzerland
the field is re-created in an update function, so I think that is pretty much expected, you need to re-export at least that part of the config after the update.
There's another issue that it reports as a changed entity field definition, I think it's not property registered due to the way it's recreated, but I was able to resolve that by manually calling
$field_storage_definition = \Drupal::service('entity_field.manager')->getFieldStorageDefinitions('opigno_answer')['field_response'];
\Drupal::entityDefinitionUpdateManager()->updateFieldStorageDefinition($field_storage_definition);