Created
March 23, 2022 17:14
-
-
Save bouk/9508a40c0ff1384a7024e078aba391a4 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
Rails.application.eager_load! | |
ApplicationRecord.subclasses.sort_by(&:name).each do |klass| | |
puts "#{klass.table_name}" | |
puts "===" | |
puts | |
puts "| Column | Type |" | |
puts "|--------|------|" | |
klass.columns.each do |column| | |
puts "| #{column.name} | #{column.type} |" | |
end | |
puts | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment