I have a rails application running on the Elastic Beanstalk service.
When I deploy my application, some pages do not work. I think the problem is that after deleting the model and creating a new model with the same name but with a different schema, the database was not reset.
The local I can run rake db:drop, rake db:create, rake db:migrateto reset the database. However, how to reset the EB database?
source
share