I'm using Rails 3.0.3 and have data for my "categories" table already in the database, but want to create a seed file from it. Is there any rake task that will generate the seeds.rb format for me from this table?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Not sure about any existing rake tasks, but you can try running something like this in the rails console & paste the results into your seeds.rb file (warning: dirty & untested)
Adjust for any additional fields you may have. Hope this helps. |
|||
|
|
|
|
|||||||
|
|
I've used YamlDb to dump data from my development db and then load it up to another server. It dumps the data to a Yaml file, which will be used any time you want to use db:load to push it up to any other db server. |
|||
|
|