Skip to content

Instantly share code, notes, and snippets.

Created July 3, 2015 22:17
Show Gist options
  • Save anonymous/136681d45fc71d3ae4ac to your computer and use it in GitHub Desktop.
Save anonymous/136681d45fc71d3ae4ac to your computer and use it in GitHub Desktop.
namespace :db do
desc "Convert your database into seeds!"
task :export_seeds do
# Rails.application.eager_load!
Rails.application.eager_load!
models = ObjectSpace.each_object(Class).select { |c| c < ActiveRecord::Base }
ignored_keys = %w[created_at updated_at id]
models.each do |model|
model.all.each do |record|
fields = record.attributes.delete_if { |k,v| ignored_keys.include? k }
puts "#{c.name}.create(#{f})"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment