Browse Source

Adjusted documentation of migration related commands.

Krzysztof Gogolewski 8 years ago
parent
commit
d1dbaeaadb
1 changed files with 4 additions and 3 deletions
  1. 4 3
      docs/topics/migrations.txt

+ 4 - 3
docs/topics/migrations.txt

@@ -16,15 +16,16 @@ The Commands
 There are several commands which you will use to interact with migrations
 and Django's handling of database schema:
 
-* :djadmin:`migrate`, which is responsible for applying migrations, as well as
-  unapplying and listing their status.
+* :djadmin:`migrate`, which is responsible for applying and unapplying
+  migrations.
 
 * :djadmin:`makemigrations`, which is responsible for creating new migrations
   based on the changes you have made to your models.
 
 * :djadmin:`sqlmigrate`, which displays the SQL statements for a migration.
 
-* :djadmin:`showmigrations`, which lists a project's migrations.
+* :djadmin:`showmigrations`, which lists a project's migrations and their
+  status.
 
 You should think of migrations as a version control system for your database
 schema. ``makemigrations`` is responsible for packaging up your model changes