Last Updated: February 25, 2016
·
499
· rshetty

Check Status of Your Database Migrations

In Your Rails Application, you need to know the status of your Database migrations.

Basically you would want to know the database migrations which are applied and the ones which did not.

Rails comes with this rake task to check for the Database migrations status.

Use

rake db:migrate:status

That's it.