출처
https://www.geeksforgeeks.org/datetimefield-django-models/
auto_now
- 갱신될 때마다 시간이 변함
- Automatically set the field to now every time the object is saved.
- Useful for “last-modified” timestamps
auto_now_add
- 처음 만들었을 때 시간으로 고정
- Automatically set the field to now when the object is first created.
- Useful for creation of timestamps.
'Python > Django' 카테고리의 다른 글
[Django] form을 활용하여 login view 수정하기 (0) | 2020.04.25 |
---|---|
[Django] Secret key 새로 생성 후 분리하기 (0) | 2020.04.24 |
[Django] Hardcoded URL 제거 / Namespacing URL names (0) | 2020.04.23 |
[Django ORM] Django QuerySet으로 간단한 검색 기능 구현하기 (0) | 2020.04.23 |
[Error solved][Django+Ajax] method object is not JSON serializable 에러 (0) | 2020.04.22 |