Changeset 3043
- Timestamp:
- 05/31/06 23:37:47 (2 years ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r3042 r3043 163 163 ``auto_now`` Automatically set the field to now every time the 164 164 object is saved. Useful for "last-modified" 165 timestamps. 165 timestamps. Note that the current date is *always* 166 used; it's not just a default value that you can 167 override. 166 168 167 169 ``auto_now_add`` Automatically set the field to now when the object 168 170 is first created. Useful for creation of 169 timestamps. 171 timestamps. Note that the current date is *always* 172 used; it's not just a default value that you can 173 override. 170 174 ====================== =================================================== 171 175
