I am going through the Django tutorial at https://docs.djangoproject.com/en/2.2/intro/tutorial02/
It had said previously that if I use sqlite that I don't need to install anything.
Now, it says, after I migrate, ," 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. "
Am I supposed to have a command line editor for sqlite already or do I need to go fetch something from the web? If the latter, what do I get? If the former, what is the command to start it up?
sqlite3on your computer, versions for a few OSes can be downloaded at sqlite.org/download.html (or get the source and build it yourself)migrateand everything worked, you don't need to do that. But if you're a database guy, you'll like to see the actual changes that were made to the db after you runmigrate. In your terminal just typesqlite3 /path/to/db.sqliteand then you can run sql commands directly on your db.