To view all the migrations in a Django project, you don’t need to look in the migrations directory of each
installed app. In this lesson, you’ll learn how to list migrations using the showmigrations
command.
Listing Django Migrations
00:01
Next, let’s look at listing migrations. To view all the migrations in a Django project, you don’t need to look in the migrations/
directory of each installed app.
00:11
You can use the showmigrations
command!
00:19
Here, you can see all of the migrations which have been applied so far. There are the historical_data
ones, and any migration which has been applied has an X
in this column.
Become a Member to join the conversation.