Methods
T
Instance Public methods
type()
# File activerecord/lib/active_record/connection_adapters/postgresql/oid.rb, line 185
def type; :timestamp; end
type_cast(value)
# File activerecord/lib/active_record/connection_adapters/postgresql/oid.rb, line 187
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