[2.2.x] Fixed explanation of how to automatically create tables in database.

Backport of c1b94e32fb from master
This commit is contained in:
Frank Wiles 2019-07-13 14:01:07 -05:00 committed by Mariusz Felisiak
parent a39365c48e
commit de19a600f0
1 changed files with 6 additions and 4 deletions

View File

@ -48,16 +48,18 @@ database-schema problems. Here's a quick example:
Install it
==========
Next, run the Django command-line utility to create the database tables
Next, run the Django command-line utilities to create the database tables
automatically:
.. console::
$ python manage.py makemigrations
$ python manage.py migrate
The :djadmin:`migrate` command looks at all your available models and creates
tables in your database for whichever tables don't already exist, as well as
optionally providing :doc:`much richer schema control </topics/migrations>`.
The :djadmin:`makemigrations` command looks at all your available models and
creates migrations for whichever tables don't already exist. :djadmin:`migrate`
runs the migrations and creates tables in your database, as well as optionally
providing :doc:`much richer schema control </topics/migrations>`.
Enjoy the free API
==================