I'm trying to add a field today + 7 days
as a default value in the Django DateField.
That's How I'm doing.
date_validity = models.DateField(default=datetime.date.today() + timedelta(days=7))
But that's giving me the problem
One thing is Field is being altered every time when we run makemigrations/migrate
command however we are not making any changes. How can I set that up accurately?