Ticket #24371: 24371.diff

File 24371.diff, 806 bytes (added by Tim Graham, 9 years ago)
  • docs/intro/tutorial01.txt

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