2

I'm building an application(log) which stores the CRUD operations done on database.Is there any way to detect the CRUD operations directly?

Kamlesh
  • 2,032
  • 2
  • 19
  • 35
Manjunath Gk
  • 412
  • 1
  • 4
  • 13

1 Answers1

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