How to reverse a 'rails generate'

前端 未结 17 1557
一个人的身影
一个人的身影 2020-12-02 03:10

I want to delete all the files it created and roll back any changes made, but not necessarily to the database, but more to the config files.

I\'d like to automatical

17条回答
  •  感情败类
    2020-12-02 03:47

    rails destroy controller lalala
    rails destroy model yadayada
    rails destroy scaffold hohoho
    

    Rails 3.2 adds a new d shortcut to the command, so now you can write:

    rails d controller lalala
    rails d model yadayada
    rails d scaffold hohoho
    

提交回复
热议问题