I am doing a web service with Django that uses a MySQL database. Clients interact with our database through the URLs processed by Django. Now I am trying to create a behavior that automatically performs some check / registration whenever a certain table changes, which naturally means MySQL triggers. However, I can do this in Django, in the query handler that modifies the table. I donโt think Django has trigger support, so Iโm not sure if itโs better to do MySQL through a Django code or trigger.
Can anyone with knowledge of these options shed light? Thanks in advance!
source share