column_for_attribute

column_for_attribute(name)
Instance Public methods

Returns the column object for the named attribute. Returns nil if the named attribute not exists.

1
2
3
4
5
6
7
8
9
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
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.