- Issue created by @loze
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
Can you confirm you're running on a platform that lets you create triggers?
The module relies on an SQL trigger to populate that column - πΊπΈUnited States loze Los Angeles
Yes I am. So i reinstated my custom module and its working as expected now.
However, on some DER fields that I created from the UI on another entity are doing the same thing now. This appears to have started after I did a config import
drush cim
. Could something have gone wrong there? is there anything I should look for that would indicate that? - π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
To be honest I wasn't involved in the trigger work and its been a headache since the get go.
I'd be keen to explore doing it in something like a presave hook or onChange metrhod instead.I think you can run `SHOW TRIGGERS` and contrast that against the list of fields
- πΊπΈUnited States loze Los Angeles
ahh, my suspicion was correct.
SHOW TRIGGERS FROM dbname;
shows that the only triggers in this db are the one from the module i just reinstalled.I have a few other entities throughout this site that use DER fields.
Is there a simple function I can call to recreate these missing triggers if I specify the field and entity type?
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
Looks like it happens in
\Drupal\dynamic_entity_reference\EventSubscriber\FieldStorageSubscriber::getSubscribedEvents
Which calls
\Drupal\dynamic_entity_reference\Storage\IntColumnHandlerMySQL
- πΊπΈUnited States loze Los Angeles
Thank you for pointing me in the right direction @larowlan!
After looking at what was going on there I was able to write my own function that added the missing triggers and everything appears to be working. Much appreciated.
Now to just figure out how this happened in the first place.
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
No worries
I'm keen to find some time to get rid of it because it prevents using the module on platforms that don't support triggers - Acquia being an example.