My flask application now has 20+ migrations built with flask-migrate
and they all have hashed file names like: 389d9662fec7_.py
I want to double check the settings on the latest migration that I ran, but don't want to open every file to look for the correct one. I could create a new dummy migration and look at what it references as the down_revision
but that seems clunky.
I'm using flask-script
, flask-migrate
, and flask-sqlalchemy
My question is: How can I quickly find the latest migration that I created?