I have a Django application that edits a database table in which another polling application and uses to update a downstream system. To minimize processing when the database was not changed between polls, I would like to use the global modification time for the model, which is updated every time a row is created / deleted / changed. How can I do this in ORM Django?
source
share