Django: python manage.py migrate does nothing at all
Try:
python manage.py makemigrations
python manage.py migrate
Well, you say that you first start the server and then type in the commands. That's also what the terminal feed you shared shows.
Do not run the server if you want to run management commands using manage.py
.
Hit Ctrl+C to exit the server and then run your migration commands, it will work.