class ActiveRecord::ConnectionAdapters::RedshiftAdapter::OID::Bit
Public Instance Methods
type_cast(value)
click to toggle source
# File lib/active_record/connection_adapters/redshift/oid.rb, line 22 def type_cast(value) if String === value ConnectionAdapters::RedshiftColumn.string_to_bit value else value end end