Destroy/Remove database in Rails

后端 未结 3 483
终归单人心
终归单人心 2021-01-31 18:30

Is it possible to completely remove the database and all migration records etc from an existing application so I can redesign the database from scratch?

3条回答
  •  孤街浪徒
    2021-01-31 19:29

    This will get rid of the db:

    rake db:drop 
    

    And for each migration that you have:

    rails d migration migration_name
    

提交回复
热议问题