django 1.7 में आप कोशिश कर सकते हैं:
1. Delete your migrations folder
2. In the database: DELETE FROM django_migrations WHERE app = 'app_name'.
You could alternatively just truncate this table.
3. python manage.py makemigrations
4. python manage.py migrate --fake
यदि आप django 1.9.5 में काम कर रहे हैं तो यह इस समस्या का 100% समाधान है:
1. Delete your migrations folder
2. In the database: DELETE FROM django_migrations WHERE app = 'app_name'.
You could alternatively just truncate this table.
3. python manage.py makemigrations app_name
4. python manage.py migrate
यह मेरे लिए 100% काम करता है!