columns(table = nil)
Get the columns for a table
# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 54 def columns(table = nil) if table @columns[table] else ActiveSupport::Deprecation.warn('call columns with a table name!') @columns.dup end end