1👍
Try deleting and re-generating your migrations with manage.py makemigrations <appname>
for each app.
0👍
I had troubles with migrations after upgrading too. If wiping your whole DB and repopulating it from a scratch is an option, try this (after cleaning the DB):
1) run ./manage.py makemigrations app_name
for each app
2) run ./manage.py migrate
3) run ./manage.py syncdb
- How to configure ViewFlow, many functionality
- Passing form input data to post request
- Django M2M with addititional data with through
- Django queryset filter by array
- ValueError in Django when running "python manage.py test"
Source:stackexchange.com