diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-22 10:11:18 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-22 10:12:18 -0500 |
| commit | 2a28606b15070677f9d4aa3cc61a939d9fc501fa (patch) | |
| tree | e95676dde0856e9c822fca97d793f7270f3230fe /docs/intro/tutorial01.txt | |
| parent | a3f7b034d7a8dacc117fef4d2237d63ec2274cba (diff) | |
[1.7.x] Fixed #24371 -- Cautioned against trying to switch databases.
Backport of 7901eccf2e591447850be00011a7bb556a3c53f2 from master
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 6e9c5598f8..d995fa6a96 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -134,7 +134,9 @@ module-level variables representing Django settings. By default, the configuration uses SQLite. If you're new to databases, or you're just interested in trying Django, this is the easiest choice. SQLite is included in Python, so you won't need to install anything else to support your -database. +database. When starting your first real project, however, you may want to use a +more robust database like PostgreSQL, to avoid database-switching headaches +down the road. If you wish to use another database, install the appropriate :ref:`database bindings <database-installation>`, and change the following keys in the |
