vote up 0 vote down star
1

Any tools in Ruby or Rails that would allow me to extract from database all the table schema and generate Ruby equivalent "DLL" statements?

Something that would allow me to port schema from say Microsoft SQL Server to Postgres, or MySQL to Sqlite.

flag

68% accept rate

1 Answer

vote up 2 vote down check

In Rails/ActiveRecord, you can use rake db:schema:dump to generate db/schema.rb, and rake db:schema:load to load it into a database.

link|flag
This is how you do it. – Brian Hogan Sep 18 at 6:21

Your Answer

Get an OpenID
or

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