Created
July 3, 2015 22:17
-
-
Save anonymous/136681d45fc71d3ae4ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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