Commit b4cc77c7 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #7605 -- Added a note about SQLite database creation to Tutorial 1....

Fixed #7605 -- Added a note about SQLite database creation to Tutorial 1. Thanks to pfctdayelise for the suggestion.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bba79ce4
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -161,6 +161,9 @@ database's connection parameters:
    this point. Do that with "``CREATE DATABASE database_name;``" within your
    database's interactive prompt.

    If you're using SQLite, you don't need to create anything beforehand - the
    database file will be created automatically when it is needed.

While you're editing ``settings.py``, take note of the ``INSTALLED_APPS``
setting towards the bottom of the file. That variable holds the names of all
Django applications that are activated in this Django instance. Apps can be