A Campos
A Campos

Reputation: 803

Django Migrations not working

I don't know what's going on. Migrations always worked fine for me, but seems to me that now something is wrong.

It's the second time that my python manage.py migrate does not work when I have just installed a third party app and want to migrate.

This time it is happening with my django-crispy-forms. I did pip installed it and put it settings.py INSTALLED_APPS list.

Did anybody ever dealt with something similar?

Thanks!

Upvotes: 0

Views: 605

Answers (1)

aliva
aliva

Reputation: 5740

django-crispy-forms doesn't contain any model or migration file, so it shouldn't do anything for migrate

Upvotes: 3

Related Questions