Using django 1.7.7 I want to use django\'s migration to add or remove a field. so I modified model.py and ran
python manage.py makemigrations myproj Migrations f
In addition to the other answers, make sure that in models.py, you have managed = True in each table's meta
managed = True