So I made the following silly error in models.py:
caption_on = models.BooleanField(default='true')
which gave me the following error when i ran 'makemigrations' and 'migrate'
django.core.exceptions.ValidationError: ["'true' value must be either True or False."]
So I fixed my mistake by changing my models.py line to
caption_on = models.BooleanField(default=True)
but this gave me again the same django.core.exceptions.ValidationError. It's like my models.py doesn't get updated. Even when I delete the line in models.py the error appears.
Anyone any idea on how to fix this?