1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【django】DateTimeField %s received a naive datetimeというwarningがでたときの対処法

Posted at

ワーニングなので特に問題はないんだろうけど鬱陶しいのでどうにかしたい人生でした。

結論

settings.py
LANGUAGE_CODE = 'ja'

TIME_ZONE = 'Asia/Tokyo'

USE_I18N = True

USE_L10N = True

USE_TZ = False <- 多分デフォだとTrueなのでFalseにする

ただこうするのはあまり良くないとか知らないおじさんが書いてたりしたんですけど言ってる意味がよくわからなかったので僕はこれでことなきを得ることしました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?