🐛 default last_report date is today, not the migration date
This commit is contained in:
parent
bb8e3aaccf
commit
979628b02d
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class Profile(models.Model):
|
||||||
|
|
||||||
last_report = models.DateField(
|
last_report = models.DateField(
|
||||||
verbose_name=_("last report date"),
|
verbose_name=_("last report date"),
|
||||||
default=timezone.now().date(),
|
default=timezone.now,
|
||||||
)
|
)
|
||||||
|
|
||||||
email_confirmed = models.BooleanField(
|
email_confirmed = models.BooleanField(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue