class ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Json

Public Instance Methods

accessor() click to toggle source
# File lib/active_record/connection_adapters/postgresql/oid.rb, line 267
def accessor
  ActiveRecord::Store::StringKeyedHashAccessor
end
type_cast(value) click to toggle source
# File lib/active_record/connection_adapters/postgresql/oid.rb, line 261
def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_json value
end
type_cast_for_write(value) click to toggle source
# File lib/active_record/connection_adapters/postgresql/oid.rb, line 257
def type_cast_for_write(value)
  ConnectionAdapters::PostgreSQLColumn.json_to_string value
end