Hello, it’s easy to dump a schema to Activerecord code (rake
db:schema:dump) but how do I dump datas ?
My need is to create a new migration that will also populate the table
created. The datas are actually in a legacy mysql table.
Should I dump the table to yaml then import yaml at after the table
creation in the migration file ?
Any hint appreciated, thank you !