Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Json
- Inherits:
-
Type
- Object
- Type
- ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Json
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
248
249
250
251
252
|
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 248
def type_cast(value)
return if value.nil?
ConnectionAdapters::PostgreSQLColumn.string_to_json value
end
|