Question

I have a question about how could I update a legacy table after an update in the auth_user table.

I would like to do some changes in other tables just after the "admin" changes the data of one of the users.

Is there a way to call a function when the auth_user's table is modificated?

Any help would be appreciated.

Thanks :)

Was it helpful?

Solution

Yoy can use post_save signals. It is exactly what you are looking for. Lear more on https://docs.djangoproject.com/en/1.4/topics/signals/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top