How to delete migration files in Rails 3

前端 未结 11 1065
盖世英雄少女心
盖世英雄少女心 2020-12-07 07:54

I would like to remove/delete a migration file. How would I go about doing that? I know there are similar questions on here but as an update, is there a better way than doin

11条回答
  •  一生所求
    2020-12-07 08:32

    I just had this same problem:

    1. rails d migration fuu -this deleted the migration with the last timestamp
    2. rails d migration fuu -this deleted the other migration
    3. use git status to check that is not on the untracked files anymore
    4. rails g migration fuu

    That fixed it for me

提交回复
热议问题