Django 1.7 on Heroku: how do I get makemigrations to rescan the database? -
Django 1.7 on Heroku: how do I get makemigrations to rescan the database? -
i have django 1.7 running on heroku. i've made alter models.py file (added column table) django doesn't seem able observe this. when run
python manage.py makemigrations appname
it responds no changes detected in app.
i've tried deleting appname/migrations folder, doesn't help.
is there way django rescan database , check differences? easy south.
https://docs.djangoproject.com/en/1.7/topics/migrations/#the-commands
have tried
python manage.py migrate
it seems migrate "responsible applying migrations, unapplying , listing status."
django heroku django-migrations
Comments
Post a Comment