﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
22129	super user creation prompts after executing migrate, not in tutorial	kirby_agudelo	Greg Chapple	"creating django app for the first time from source I followed steps in documentaion. after executing ""migrate"" command, i was prompted with

You have installed Django's auth system, and don't have any superusers defined.
Would you like to create one now? (yes/no): 


it was not in documentation that such prompt will appear


here are the details

django version 1.7a2

used pdf document page 20 ""Getting started""


created app1 with command

  python manage.py startapp app1

edited settings.py to add app1



created models to models.py from documentation
    class Question( models.Model ):
        question_test = models.CharField(max_length=200)
        pub_date = models.DateTimeField('date_published')
        
    class Choice(models.Model):
        question = models.ForeignKey(Question)
        choice_text = models.CharField(max_length=200)


execute makemigrations
  python manage.py manage.py makemigrations app1

execute migrate
  python manage.py migrate


displayed:

Operations to perform:
  Synchronize unmigrated apps: admin, contenttypes, auth, sessions
  Apply all migrations: app1
Synchronizing apps without migrations:
  Creating tables...
  Installing custom SQL...
  Installing indexes...
Running migrations:
  No migrations needed.

You have installed Django's auth system, and don't have any superusers defined.
Would you like to create one now? (yes/no): 

----------------
automates user creation but i dont want to create user yet. maybe some kind of switch will be nice to bypass this when executing ""migrate""



upon executing migrate for simple models, i was prompted to create user (not in docs)"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed	documentation		Accepted	1	0	0	0	0	0
