Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 12 down vote accepted

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)

c = Category.all

c.each do |cat|
  puts "Category.create(:name => '#{cat.name}')"
end

Adjust for any additional fields you may have.

Hope this helps.

share|improve this answer

Checkout this gem.

https://github.com/rhalff/seed_dump

Update broken link new location at

http://rubygems.org/gems/seed_dump

share|improve this answer
That is a really good share, thanks! – Justin D. Jul 24 '12 at 2:53
1  
I found the new Github home in case anyone is looking for it - github.com/zenprogrammer/seed_dump – rcd Feb 9 at 19:14

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.

https://github.com/ludicast/yaml_db

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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