RuntimeWarning: DateTimeField Report.input_date received a naive datetime ... while time zone support is active.
시간을 저장하는 부분에서 해당 에러가 나왔다.
이 오류는 settings.py에 있다.
USE_TZ = True로 되어있기 때문이다
True를 False로 바꾸면 더이상 에러는 나오지 않는다.
자세한 분석은
https://brownbears.tistory.com/42
USE_TZ를 아예 꺼버리면 나중에 해외의 서비스나 Timezone이 바뀌는 일이 생길 경우 문제가 생긴다고한다.
자세한 내용은 해당 블로그에서 확인이 가능하다!
https://inspireworld.tistory.com/144