From cdf15295a78b131e952d7f39f860745aff91007d Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Sat, 5 Jul 2014 12:24:16 +0200 Subject: [PATCH] Fixed the output of `syncdb`. contrib.sites is not in INSTALLED_APPS by default anymore. --- starting_django_project/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/starting_django_project/README.md b/starting_django_project/README.md index af92371df63..9b40712ffd0 100644 --- a/starting_django_project/README.md +++ b/starting_django_project/README.md @@ -51,6 +51,7 @@ To create a database for our blog we will type in console/command-line `python m (blog) ~/mysite python manage.py syncdb Creating tables ... + Creating table django_admin_log Creating table auth_permission Creating table auth_group_permissions Creating table auth_group @@ -59,8 +60,6 @@ To create a database for our blog we will type in console/command-line `python m Creating table auth_user Creating table django_content_type Creating table django_session - Creating table django_site - Creating table django_admin_log You just installed Django's auth system, which means you don't have any superusers defined. Would you like to create one now? (yes/no): yes