- πΊπΈUnited States robphillips
MR is missing an entity definition update hook for existing installations. Something like:
function function poll_update_8002(&$sandbox) { \Drupal::entityDefinitionUpdateManager()->updateEntityType( \Drupal::entityTypeManager()->getDefinition('poll') ); }
In the meantime, for those who need this feature now, install https://www.drupal.org/project/entity_definition_update β and run:
drush php:eval '$entityDefinitionUpdate = \Drupal::service("entity_definition_update.entity_definition_update_manager"); $entityDefinitionUpdate->applyUpdates();'
Furthermore, you may need to prefer source due to a conflict with Drupal.org packaging information:
https://www.drupal.org/project/drupal/issues/3036459#comment-13448693 π Packaging info from .info.yml often creates conflicts when patching Active - last update
over 1 year ago 27 pass, 1 fail - Status changed to Needs review
over 1 year ago 4:02pm 28 June 2023 - πΊπΈUnited States robphillips
MR updated to include field storage definition update hook. Also fixed the ability to unset runtime on an existing poll.
- Status changed to Needs work
10 months ago 12:19pm 15 April 2024 - π§πͺBelgium BramDriesen Belgium π§πͺ
MR Still has failing tests. Needs to be rebased for 2.0.x as well.