#6221 closed (invalid)
auto_now and auto_now_add still documented
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | auto_now auto_now_add | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Hi,
the auto_now and auto_now_add fields are still documented, even though they were removed http://groups.google.com/group/django-users/browse_frm/thread/fa3347d7e3e6bfd6/. Maybe one could insert a short version of the save() Method from this blog-post http://coderseye.com/2007/django-auto_now-removal-gotcha.html, so one knows about a possible replacement? :)
Regards,
Philipp Wollermann
Change History (2)
comment:1 by , 17 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 by , 17 years ago
Sorry, error on my part, I tried with
class TestModel(models.Model): dttest = models.DateTimeField(auto_now)
It didn't work and I overlooked, that I forgot to specify =True to the keyword argument, then I got an error saying "auto_now is not defined" and thought "Well, that must be the removal, which was announced way back" :) Thanks for pointing me to the source, I found my error :)
The aren't gone yet, take a loot at the source for proof.