I am trying migrate using django but I get this error and I have no idea what to do to fix it.
I have google the error message but all it was talking about postgres.
I have this in my model
budget = models.DecimalField(max_digits=10, decimal_places=2, null=True, blank=True)
# I used to have this though
budget = models.IntegerField(null=True, blank=True)
I was using this command
python manage.py makemigrations which generates the alter table fine but when I run the migrate python manage.py migrate this error would pop up.
Can someone please give me a hand?
Thanks in advance.