class Arel::Attributes::Attribute
Public Instance Methods
able_to_type_cast?()
click to toggle source
# File lib/arel/attributes/attribute.rb, line 21 def able_to_type_cast? relation.able_to_type_cast? end
lower()
click to toggle source
Create a node for lowering this attribute
# File lib/arel/attributes/attribute.rb, line 13 def lower relation.lower self end
type_cast_for_database(value)
click to toggle source
# File lib/arel/attributes/attribute.rb, line 17 def type_cast_for_database(value) relation.type_cast_for_database(name, value) end