I\'m trying to deploy my Django application to Heroku. The migrations are in my local Git. When I try:
git push heroku master
heroku run python manage.py syncdb
What version of django you are using..?
If you are using django>=1.7 you need to run migrate
After adding models you need to do
python manage.py makemigrations
then python manage.py migrate
If your project already contain migrations you can directly run python manage.py migrate
command.
If you miss any step mentioned above please do that.