I have a model with a bunch of different fields like first_name, last_name, etc. I also have fields first_name_ud, last_name_ud, etc. that correspond to the last updated date of the related fields (i.e. when the first_name is changed and then first_name_ud is set to the current date).
Is there a way to do this automatically or do I need to check which fields have been changed each time I save the object and then update the corresponding "_ud" fields.
Thanks a lot!
source
share