diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 5881878..a516afd 100644
a
|
b
|
module-level variables representing Django settings.
|
127 | 127 | By default, the configuration uses SQLite. If you're new to databases, or |
128 | 128 | you're just interested in trying Django, this is the easiest choice. SQLite is |
129 | 129 | included in Python, so you won't need to install anything else to support your |
130 | | database. |
| 130 | database. When starting your first real project, however, you may want to use a |
| 131 | more robust database like PostgreSQL, to avoid database-switching headaches |
| 132 | down the road. |
131 | 133 | |
132 | 134 | If you wish to use another database, install the appropriate :ref:`database |
133 | 135 | bindings <database-installation>`, and change the following keys in the |