File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -365,11 +365,13 @@ configured by default in a new Django project's :setting:`django:DATABASES`.
365
365
.. note ::
366
366
367
367
For deployment, you'll need to use a :doc: `production-ready database with Django
368
- <django:ref/databases>`. We recommend using PostgreSQL _ or MySQL _ .
368
+ <django:ref/databases>`. We recommend using PostgreSQL _, MySQL _ or MariaDB _ .
369
369
370
370
Installing and maintaining database systems is far beyond the scope of this
371
371
documentation, but is very well documented on the systems' respective websites.
372
372
373
+ .. _mariadb : http://www.mariadb.com
374
+
373
375
.. _mysql : http://www.mysql.com
374
376
375
377
.. _postgresql : http://www.postgresql.org/
@@ -380,7 +382,7 @@ configured by default in a new Django project's :setting:`django:DATABASES`.
380
382
.. code-block ::
381
383
382
384
pip install psycopg2 # for Postgres
383
- pip install mysqlclient # for MySQL
385
+ pip install mysqlclient # for MySQL or MariaDB
384
386
385
387
Refer to :setting: `Django's DATABASES setting documentation <django:DATABASES> ` for the
386
388
appropriate configuration for your chosen database backend.
You can’t perform that action at this time.
0 commit comments