mirror of https://github.com/django/django.git
Recommended using .tables on SQLite in tutorial 2.
This commit is contained in:
parent
36d54b7a14
commit
9466fd7842
|
@ -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
|
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
|
migration it applies. If you're interested, run the command-line client for your
|
||||||
database and type ``\dt`` (PostgreSQL), ``SHOW TABLES;`` (MariaDB, MySQL),
|
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.
|
display the tables Django created.
|
||||||
|
|
||||||
.. admonition:: For the minimalists
|
.. admonition:: For the minimalists
|
||||||
|
|
Loading…
Reference in New Issue