From cebac15931173b2fc5d8f2b3f4bd69fe1a8a856d Mon Sep 17 00:00:00 2001 From: Victor Sowa Date: Wed, 29 Sep 2021 12:42:59 +0200 Subject: [PATCH] [4.0.x] Recommended using .tables on SQLite in tutorial 2. Backport of 9466fd78420a851460c92673dad50a5737c75b12 from main --- docs/intro/tutorial02.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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