Show pending migrations in rails

前端 未结 10 1147
北海茫月
北海茫月 2020-12-22 22:25

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

10条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-22 22:54

    Try rake -h (help) and have a look at rake -n (= rake --dry-run). So probably something like rake -n db:migrate should get you what you want.

提交回复
热议问题