I'm building an application(log) which stores the CRUD operations done on database.Is there any way to detect the CRUD operations directly?
Asked
Active
Viewed 1,199 times
1 Answers
2
You can accomplish this using django's model signals.
Alternatively, you could use one of the many existing packages that provide this functionality. Find a comparison here: https://www.djangopackages.com/grids/g/model-audit/

zsquare
- 9,916
- 6
- 53
- 87