So I have this stamp timestamp DEFAULT NOW() ON UPDATE NOW()
row on my table, and I need it to update even when the update I'm executing is basically same data on all fields.
Is there any way of doing this within the declaration of the table, like some other option other than on update
, or do I have to force a stamp = now()
every time I update (and remove the on update
of course since it will be useless).
I've seen this thread, but it only answers what is happening and why, not how to get around it other than forcing it indirectly