summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Sowa <victor.johan.sowa@gmail.com>2021-09-29 12:42:59 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-29 12:43:27 +0200
commitcebac15931173b2fc5d8f2b3f4bd69fe1a8a856d (patch)
treeec4297248f3d68b7b9d7516137701940bb1cf8ee
parentee79fe0f8ee01826ef151a8c70c3496f9938379b (diff)
[4.0.x] Recommended using .tables on SQLite in tutorial 2.
Backport of 9466fd78420a851460c92673dad50a5737c75b12 from main
-rw-r--r--docs/intro/tutorial02.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index f5d277c3b0..8050848035 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -100,7 +100,7 @@ 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;`` (MariaDB, MySQL),
-``.schema`` (SQLite), or ``SELECT TABLE_NAME FROM USER_TABLES;`` (Oracle) to
+``.tables`` (SQLite), or ``SELECT TABLE_NAME FROM USER_TABLES;`` (Oracle) to
display the tables Django created.
.. admonition:: For the minimalists