Method: ActiveRecord::AttributeMethods#column_for_attribute
- Defined in:
- lib/active_record/attribute_methods.rb
#column_for_attribute(name) ⇒ Object
Returns the column object for the named attribute. Returns nil if the named attribute not exists.
class Person < ActiveRecord::Base
end
person = Person.new
person.column_for_attribute(:name) # the result depends on the ConnectionAdapter
# => #<ActiveRecord::ConnectionAdapters::SQLite3Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...>
person.column_for_attribute(:nothing)
# => nil
280 281 282 283 |
# File 'lib/active_record/attribute_methods.rb', line 280 def column_for_attribute(name) # FIXME: should this return a null object for columns that don't exist? self.class.columns_hash[name.to_s] end |