timezone

Nam Eun-Ji·2020년 11월 27일
0
post-custom-banner

문제

아래와 같이 만들 경우에 기본적으로 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/

profile
한 줄 소개가 자연스러워지는 그날까지

0개의 댓글