Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Float
- Inherits:
-
Type
- Object
- Type
- ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Float
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
211
212
213
214
215
|
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid.rb', line 211
def type_cast(value)
return if value.nil?
value.to_f
end
|