Django: I get a [relation "auth_group" does not exist] error after syncdb
Probably you should try to create migrations
modules (folders named migrations
with empty file named __init__.py
inside of each directory) for your apps. And then run manage.py makemigrations
again.
The problem is on no changes detected
. Please execute these commands with your app name. I guess you didn't add it (just like the mistake I did):
python manage.py makemigrations myappname
python manage.py migrate myappname