Syncdb is ... gone?

By Justin

Yup python manage.py syncdb is no more. Here's the simple updates:

Old commands:

python manage.py syncdb
python manage.py createsuperuser
This creates a super user like syncdb does if the database is empty

New commands:

python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
Read more about these commands on the Django 1.10 docs
We recommend watching our latest Try Django series to see it in action.
Discover Posts