class ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Boolean

Public Instance Methods

type_cast(value) click to toggle source
# File lib/active_record/connection_adapters/postgresql/oid.rb, line 170
def type_cast(value)
  return if value.nil?

  ConnectionAdapters::Column.value_to_boolean value
end