Hi there, I'd like to override the save() method and within it I'd like to test if a value has changed, that is, if that value as stored in the object (in memory) is different from what is actually stored in database. Something like:
class A: stuff = models.blabla def save(self): if self.stuff != magic_function_that_tells_what_is_in_database_for('stuff') do_this() super(A, self).save() Any idea? Thanks! Julien --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---