[Fixed]-Django 1.10.5: relation 'myapp_mymodel' does not exist even after migrating

1👍

Makemigrations command just creates migrations for the changes in the database. It does perform any type of modification in DB.

python manage.py migrate

above command does the actual modification in the database and create an entry in migration table. so that Django can understand which migrations are actually migrated

Leave a comment