I have a model like this:
MyModel(models.Model):
...
date_start = models.DateTimeField(
auto_now=True,
editable=True
)
date_end = models.DateTimeField(
default=datetime.now() + relativedelta(months=3)
)
...
I modified the date_end
field before, and I did the migrations, it is working properly, but now it is still detecting that change as a new migration. Any idea? Thanks in advance.