Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Boolean

Inherits:
Type
  • Object
show all
Defined in:
lib/arjdbc/postgresql/base/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#infinity, #simplified_type

Instance Method Details

#typeObject



213
# File 'lib/arjdbc/postgresql/base/oid.rb', line 213

def type; :boolean end

#type_cast(value) ⇒ Object



215
216
217
218
219
# File 'lib/arjdbc/postgresql/base/oid.rb', line 215

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::Column.value_to_boolean value
end