According to the documentation here: https://docs.djangoproject.com/en/1.8/topics/migrations/ it says:
migrate, which is responsible for applying migrations, as
According the Polls tutorial:
python manage.py makemigrations : Create the migrations (generate the SQL commands).
python manage.py makemigrations
SQL
python manage.py migrate: Run the migrations (execute the SQL commands).
python manage.py migrate