Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been considering upgrading to rails 3 for some time now. It's now become viable for me to re-create my application (with a few extra bells and whistles). I can re-make the application with no real problems with the help of Railscasts and my basic knowledge, however my issue is the database. My database contains a number of entries that need to remain in the newer version and obviously I don't want to have to manually re-create every single entry. I will re-create most of the important fields of my SQLite database, excluding a few ones which aren't necessary. How can I make my new application use the old database when it will have some new columns and other different things?

Any help?

Best Regards,

Joe

share|improve this question
Are you talking about data or structure? – Ant Aug 3 '11 at 15:48
Data - I don't care about the database structure since I'll probably end up re-creating the database (and hence the structure). – joesavage Aug 3 '11 at 15:51

1 Answer

If it's a large amount of data what I'd do is dump the data you want into a file, then either in a separate rake task or the seeds.rb file do something like:

sql = **read in your file***
ActiveRecord::Base.connection.execute(sql)
share|improve this answer
I don't really know all that much about Ruby on Rails - just how to create small applications (self taught). Would you mind explaining that a little more to me if you have time? – joesavage Aug 3 '11 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.