Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Bit

Inherits:
Type
  • Object
show all
Defined in:
activerecord/lib/active_record/connection_adapters/postgresql/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#type_cast(value) ⇒ Object



18
19
20
21
22
23
24
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid.rb', line 18

def type_cast(value)
  if String === value
    ConnectionAdapters::PostgreSQLColumn.string_to_bit value
  else
    value
  end
end