Django: Getting Started Transcripts
Chapter: DB Migrations
Lecture: Migration and the database

Login or purchase this course to watch this video and the rest of the course contents.
0:06 And now I'll use DB Shell to take a look at it. Dot tables is a sequel like command that lists all of the tables in the database
0:22 The tables for models are named, starting with the app name, then an underscore than the model name. So music _ song is the one I just created.
0:38 Dot schema is a sequel like command that shows the schema information about the table.
0:43 Here you can see all the sequel that was run to create this table and all the column info inside of it. Okay, you've got the idea.
0:53 Let's make a change and see what happens.


Talk Python's Mastodon Michael Kennedy's Mastodon