class ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Timestamp
def type; :timestamp; end
def type; :timestamp; end
def type_cast(value)
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