Syncdb is ... gone?
By Justin
Yup python manage.py syncdb is no more. Here's the simple updates:
Old commands:
python manage.py syncdbpython manage.py createsuperuserNew commands:
python manage.py makemigrationspython manage.py migratepython manage.py createsuperuserRead more about these commands on the Django 1.10 docs
We recommend watching our latest Try Django series to see it in action.