Destroy/Remove database in Rails

后端 未结 3 482
终归单人心
终归单人心 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

    Yes, Its possible to remove the database and migration.

    rake db:drop
    rake db:rollback
    rails d migration 'migration name'
    rake db:create
    rake db:migrate
    rake db:seed
    rake db:test:prepare
    

提交回复
热议问题