# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 676def columns(table_name,name=nil)# Limit, precision, and scale are all handled by the superclass.column_definitions(table_name).collectdo|name,type,default,notnull|PostgreSQLColumn.new(name,default,type,notnull=='f')endend