1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-12-22 15:32:22 +00:00

🐛 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

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(