아래와 같이 만들 경우에 기본적으로 UTC시간이 들어가게 된다.
class Feed(models.Model):
created_at = models.DateTimeField(auto_now_add = True)
한국시간(UTC+9)을 설정하기 위해 django 프로젝트의 settings.py 파일을 아래와 같이 변경해준다.
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Seoul'
USE_I18N = True
USE_L10N = True
USE_TZ = False
참고페이지 : https://8percent.github.io/2017-05-31/django-timezone-problem/