Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Json

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

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#accessorObject



262
263
264
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 262

def accessor
  ActiveRecord::Store::StringKeyedHashAccessor
end

#type_cast(value) ⇒ Object



256
257
258
259
260
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 256

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_json value
end

#type_cast_for_write(value) ⇒ Object



252
253
254
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 252

def type_cast_for_write(value)
  ConnectionAdapters::PostgreSQLColumn.json_to_string value
end