LoginSignup
0
0

More than 3 years have passed since last update.

WARNINGS: ***: (fields.W161) Fixed default value provided. ....というワーニングの改善方法

Last updated at Posted at 2020-04-29

ワーニングの内容

WARNINGS:
***: (***) Fixed default value provided.
        HINT: It seems you set a fixed date / time / datetime value as default 
for this field. 
This may not be what you want. If you want to have the current date as default, 
use `django.utils.timezone.now

改善方法

from django.utils import timezone
...
...

create_date = models.DateTimeField(default=timezone.now())

となっていたものを

from django.utils import timezone
...
...

create_date = models.DateTimeField(default=timezone.now)

に変更することで改善された。

参考

0
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
0
0