1
0
mirror of https://github.com/django/django.git synced 2025-04-05 05:56:42 +00:00

magic-removal: syncdb now prompts to create a superuser when you install the auth models.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2484 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2006-03-03 23:41:02 +00:00
parent 3cf23a5c36
commit f1c36bc4b3

View File

@ -458,6 +458,15 @@ def syncdb():
print "Creating example site object"
ex = Site(domain="example.com", name="example.com")
ex.save()
# If we just installed the User model, ask about creating a superuser
from django.contrib.auth.models import User
if User in created_models:
msg = "\nIt looks like you just installed Django's auth system which means you don't have " \
"any superusers defined.\nWould you like to create one now? (yes/no): "
confirm = raw_input(msg)
if confirm.lower().startswith('y'):
createsuperuser()
syncdb.args = ''