I got a rails site and a mysql db.
I need to perform archiving one of my models.
What are my options? does rails got some built in capabilities? does mysql got any?
I got a rails site and a mysql db. I need to perform archiving
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
rake db:dump will dump your schema and the contents of your database.
rake db:load will load the contents of the dump back into your db