I have an app that I'm porting from PHP/symfony to Ruby/Rails. Though the language is changing, there is no need to modify the database (MySQL) in any way.

Because I already have my database defined, there's no reason for me to individually create a Rails model for each table and manually specify the attributes of each model. Given the size of my database, that would be ridiculous.

Because I don't need to individually create models, my schema.yml is blank. Because schema.yml is blank, running rake db:migrate will wipe out my database. (At least I think that's the reason. I could be wrong.)

Can anyone recommend a way of handling this situation where I have an existing database but I don't want to manually re-define every single table for Rails?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Have you tried a rake db:dump ?

link|improve this answer
That worked. Thank you! I found a little documentation here: guides.rubyonrails.org/migrations.html – Jason Swett Jan 14 '11 at 15:54
feedback

rake db:migrate should never wipe out your database. What do your migrations look like?

link|improve this answer
I have no migrations. – Jason Swett Jan 14 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

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