Ticket #23062: 23062.diff

File 23062.diff, 721 bytes (added by Tim Graham, 10 years ago)
  • docs/ref/django-admin.txt

    diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
    index b2d2f44..b5d80d4 100644
    a b The behavior of this command changes depending on the arguments provided:  
    696696  unapplying migrations if you have previously migrated past the named
    697697  migration. Use the name ``zero`` to unapply all migrations for an app.
    698698
     699Unlike ``syncdb``, this command does not prompt you to create a superuser if
     700one doesn't exist (assuming you are using :mod:`django.contrib.auth`). Use
     701:djadmin:`createsuperuser` to do that if you wish.
     702
    699703.. django-admin-option:: --fake
    700704
    701705The ``--fake`` option tells Django to mark the migrations as having been
Back to Top