diff options
| author | Tim Graham <timograham@gmail.com> | 2015-07-01 10:13:34 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-01 10:15:29 -0400 |
| commit | 08b0b81a6a4e65a84ce4454cabf74a3c95eab5e0 (patch) | |
| tree | 9fd2fbafac864bb0d319af2eed0734069f7fc413 | |
| parent | 805e5b88e0aae946b07fc8c82dff783ca5fd163b (diff) | |
[1.8.x] Fixed #25041 -- Clarified difference between syncdb and migrate.
| -rw-r--r-- | docs/ref/django-admin.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index b5008157ce..04b6839618 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1413,9 +1413,10 @@ syncdb This command has been deprecated in favor of the :djadmin:`migrate` 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> ----------------------------- |
