# File lib/arel/table.rb, line 96 def [] name return nil unless table_exists? name = name.to_sym columns.find { |column| column.name == name } end