- Issue created by @joachim
- 🇮🇳India atul_ghate
Hi @dpi
As per Proposed resolution I've followed same technique as Drupal\Core\Entity\Sql\DefaultTableMapping
The table name generated for date occurrences can go over the maximum allowed by MySQL.
For example, in a test, it crashed because the table name was:
> test28051846date_recur__entity_test_with_bundle__finders_events_date
We have here:
- test28051846 -- test prefix
- date_recur -- table root name
- entity_test_with_bundle -- test entity type ID
- finders_events_date -- field name
Check the generated table name in Drupal\date_recur\DateRecurOccurrences and use the same technique as Drupal\Core\Entity\Sql\DefaultTableMapping if it's too long.
[[Remove this:] Replace ❌ with ✔ where applicable]
Active
3.9
Field Storage
Hi @dpi
As per Proposed resolution I've followed same technique as Drupal\Core\Entity\Sql\DefaultTableMapping