Skip to content

Instantly share code, notes, and snippets.

@leejarvis
Created February 20, 2012 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leejarvis/1868981 to your computer and use it in GitHub Desktop.
Save leejarvis/1868981 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
begin
require './config/environment'
rescue LoadError
abort 'Not in a rails environment?'
end
tables = ActiveRecord::Base.connection.tables
if table = ARGV.shift
tables.keep_if { |t| t.downcase.include?(table.downcase) }
end
tables.each do |table|
puts "#{table} - "
columns = ActiveRecord::Base.connection.columns(table)
columns.each do |column|
puts " #{column.name} (#{column.type})"
end
puts "\n\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment