Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Integer

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, #type_cast_for_write

Instance Method Details

#type_cast(value) ⇒ Object



161
162
163
164
165
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid.rb', line 161

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::Column.value_to_integer value
end