🐛 default last_report date is today, not the migration date

This commit is contained in:
Yohann D'ANELLO 2020-08-06 20:30:17 +02:00
parent bb8e3aaccf
commit 979628b02d
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class Profile(models.Model):
last_report = models.DateField(
verbose_name=_("last report date"),
default=timezone.now().date(),
default=timezone.now,
)
email_confirmed = models.BooleanField(