1👍
✅
Seems that you modified your database schema after creating the database.
You need to migrate your apps or recreate your database if you don’t have any data.
To migrate your apps, try South. To recreate the database, for example if you are using SQLite, you can just delete the database file specified in your settings, and the run syncdb
command again.
0👍
Did you create the database tables, then changed the models?
Django does not keep the database and the models in sync, you either need to use South for that, or destroy and rebuild the database when you change the models.
👤krs
- [Answer]-Python-social-auth logs into 3rd party service (like facebook) along with logging into my app
- [Answer]-UWSGI process doesn't inherit permissions associated with group its uid belongs to
- [Answer]-How to get certain things from POST
Source:stackexchange.com