[1.8.x] Fixed #25041 -- Clarified difference between syncdb and migrate.

This commit is contained in:
Tim Graham 2015-07-01 10:13:34 -04:00
parent 805e5b88e0
commit 08b0b81a6a
1 changed files with 3 additions and 2 deletions

View File

@ -1413,9 +1413,10 @@ syncdb
This command has been deprecated in favor of the :djadmin:`migrate` This command has been deprecated in favor of the :djadmin:`migrate`
command, which performs both the old behavior as well as executing command, which performs both the old behavior as well as executing
migrations. It is now just an alias to that command. migrations.
Alias for :djadmin:`migrate`. Alias for :djadmin:`migrate`, except that it also prompts you to create a
superuser if one doesn't exist (assuming you are using ``django.contrib.auth``).
test <app or test identifier> test <app or test identifier>
----------------------------- -----------------------------