I am trying to implement a database change control using MySQL. To control inserts and updates I want to use something similar to a TIMESTAMP field in SQLServer (A column that autoincrements when a insert/update is made over a row). Does exists something similar in MySQL? If a want to do it with MySQL my only way is write a trigger for update and another to insert in every table of the database?
Thanks