Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rafamoreira/9a02764cbbcb25146928ad53edaa6ced to your computer and use it in GitHub Desktop.
Save rafamoreira/9a02764cbbcb25146928ad53edaa6ced to your computer and use it in GitHub Desktop.
File.open("my_db", "w") do |f|
ActiveRecord::Base.connection.tables.sort.each do |table_name|
f.write "#{table_name}\n"
ActiveRecord::Base.connection.columns(table_name).map(&:name).sort.each do |c|
f.write "- #{c}\n"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment