Created
April 29, 2016 20:19
-
-
Save foxumon/fdb30349545944eee58c7858e6bab23c to your computer and use it in GitHub Desktop.
Export table to CSV with all attributes in rails console
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
require 'csv' | |
file = "#{Rails.root}/public/data.csv" | |
table = User.all;0 # ";0" stops output. Change "User" to any model. | |
CSV.open( file, 'w' ) do |writer| | |
writer << table.first.attributes.map { |a,v| a } | |
table.each do |s| | |
writer << s.attributes.map { |a,v| v } | |
end | |
end |
how to connect it to your project?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this! Also, it can be readily modified into a Rake task that takes the model name as an argument, like
rake dump_table[Foo]