Changeset 7917
- Timestamp:
- 07/13/08 07:16:11 (4 months ago)
- Files:
-
- django/trunk/docs/tutorial01.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial01.txt
r7655 r7917 147 147 Other backends are `also available`_. 148 148 * ``DATABASE_NAME`` -- The name of your database, or the full (absolute) 149 path to the database file if you're using SQLite. 149 path to the database file if you're using SQLite. 150 150 * ``DATABASE_USER`` -- Your database username (not used for SQLite). 151 151 * ``DATABASE_PASSWORD`` -- Your database password (not used for SQLite). … … 161 161 this point. Do that with "``CREATE DATABASE database_name;``" within your 162 162 database's interactive prompt. 163 164 If you're using SQLite, you don't need to create anything beforehand - the 165 database file will be created automatically when it is needed. 163 166 164 167 While you're editing ``settings.py``, take note of the ``INSTALLED_APPS``
