Show pending migrations in rails

Readonly picture Readonly · Aug 28, 2009 · Viewed 64.5k times · Source

Is there a rake task that shows the pending migrations in a rails app?

Answer

jrdioko picture jrdioko · Jan 25, 2011

rake db:migrate:status (Rails 3 to 5) or rails db:migrate:status (Rails 5) will accomplish this. See this commit.

up means the migration has been run. down means the migration has not been run.