I am trying to port an old PHP application to Rails. I dumped the old mysql tables and uploaded them to the server running the new rails application. How can I transfer data from old legacy tables to the new Rails model? I could write a PHP script to spit everything out into a ruby, and then use it to populate seed.rb, but it seems to me that there should be an easier way to achieve this.
The new application is RoR 3.0.9, and the database is still mysql.
source share