Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Cidr

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

#type_cast(value) ⇒ Object



244
245
246
247
248
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 244

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_cidr value
end