Reputation: 1221
I'm using PostegreSQL. What I've tryed already:
python manage.py flush
python manage.py makemigrations
python manage.py migrate
python manage.py makemigrations app
python manage.py migrate app
python manage.py migrate --run-syncdb
There aren't any effect. The table have no recently added columns. Have no importaint data in tables, can remove it.
Upvotes: 0
Views: 286
Reputation: 102
Upvotes: 1
Reputation: 540
Delete all migration files (except the init.py files) and database, rerun makemigrations and migrate.
Upvotes: 1