Show pending migrations in rails

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

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

10条回答
  •  感情败类
    2020-12-22 22:43

    Following command to check migration status:

    rake db:migrate:status
    

    OR

    when you run your server, it will display a message to run your pending migration first.

提交回复
热议问题