Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Bit
- Inherits:
-
Type
- Object
- Type
- ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Bit
show all
- Defined in:
- lib/active_record/connection_adapters/postgresql/oid.rb
Instance Method Summary
collapse
Methods inherited from Type
#type, #type_cast_for_write
Instance Method Details
#type_cast(value) ⇒ Object
22
23
24
25
26
27
28
|
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 22
def type_cast(value)
if String === value
ConnectionAdapters::PostgreSQLColumn.string_to_bit value
else
value
end
end
|