Document how to create initial superuser without syncdb command
Hi,
In Django 1.7, after startproject, you will now run migrate, but this won't ask to create the superuser. Is there any new command / option planned? Saying migrate is an alias or the replacement for syncdb is confusing as it does not behaves in the same way.
Change History
(6)
Component: |
Uncategorized → Documentation
|
Needs documentation: |
set
|
Summary: |
how to create initial superuser without syncdb command → Document how to create initial superuser without syncdb command
|
Triage Stage: |
Unreviewed → Accepted
|
Type: |
Uncategorized → Cleanup/optimization
|
Has patch: |
set
|
Needs documentation: |
unset
|
Triage Stage: |
Accepted → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
This can (and could always) be done with
./manage.py createsuperuser
. Perhaps it would be useful to mention that fact in the appropriate place in the docs.