the three-step guide to making model changes:
- Change your models (in
models.py). - Run
python manage.py makemigrationsto create migrations for those changes - Run
python manage.py migrateto apply those changes to the database.
models.py).python manage.py makemigrations to create migrations for those changespython manage.py migrate to apply those changes to the database.$ python3.6 -m venv my_env
$ source my_env/bin/activate