summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-05-27 19:59:49 +0200
committerGitHub <noreply@github.com>2019-05-27 19:59:49 +0200
commitb6c4766f53cf00bcf63cc2aa8be977c8589d083e (patch)
tree7433fc163e14691496f4014ce7d27a2a11d43a31 /docs/intro
parent5ec44973dc2add8ced1ba50659344b52cec845e5 (diff)
Refs #29548 -- Updated docs for MariaDB support.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/install.txt4
-rw-r--r--docs/intro/tutorial02.txt6
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/intro/install.txt b/docs/intro/install.txt
index a750189f85..d1ac700372 100644
--- a/docs/intro/install.txt
+++ b/docs/intro/install.txt
@@ -31,8 +31,8 @@ Set up a database
=================
This step is only necessary if you'd like to work with a "large" database engine
-like PostgreSQL, MySQL, or Oracle. To install such a database, consult the
-:ref:`database installation information <database-installation>`.
+like PostgreSQL, MariaDB, MySQL, or Oracle. To install such a database, consult
+the :ref:`database installation information <database-installation>`.
Install Django
==============
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 9046d167b0..4b66ea16c2 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -94,9 +94,9 @@ and creates any necessary database tables according to the database settings
in your :file:`mysite/settings.py` file and the database migrations shipped
with the app (we'll cover those later). You'll see a message for each
migration it applies. If you're interested, run the command-line client for your
-database and type ``\dt`` (PostgreSQL), ``SHOW TABLES;`` (MySQL), ``.schema``
-(SQLite), or ``SELECT TABLE_NAME FROM USER_TABLES;`` (Oracle) to display the
-tables Django created.
+database and type ``\dt`` (PostgreSQL), ``SHOW TABLES;`` (MariaDB, MySQL),
+``.schema`` (SQLite), or ``SELECT TABLE_NAME FROM USER_TABLES;`` (Oracle) to
+display the tables Django created.
.. admonition:: For the minimalists