summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
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