Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Timestamp

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

Instance Method Summary collapse

Instance Method Details

#typeObject



181
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 181

def type; :timestamp; end

#type_cast(value) ⇒ Object



183
184
185
186
187
188
189
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 183

def type_cast(value)
  return if value.nil?

  # FIXME: probably we can improve this since we know it is PG
  # specific
  ConnectionAdapters::PostgreSQLColumn.string_to_time value
end