I have a database that has multiple scripts/sites interacting with it in terms of updating/inserting new data.
Since there is not one interface for doing this, I would like to some how track what is happening on a daily basis in MySQL.
What kinds of built in features does MySQL have for tracking changes?
For example:
An update command is performed on a column named 'num_images'.
I would like to track this change in another table that would state what column was changed and what it was changed to.
What is the most efficient way to track a table? What should I be reading up on to put a type of tracker on a table to look for these changes?