Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Date
- Defined in:
- lib/active_record/connection_adapters/postgresql/oid.rb
Instance Method Summary collapse
Methods inherited from Type
Instance Method Details
#type ⇒ Object
194 |
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 194 def type; :datetime; end |
#type_cast(value) ⇒ Object
196 197 198 199 200 201 202 |
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 196 def type_cast(value) return if value.nil? # FIXME: probably we can improve this since we know it is PG # specific ConnectionAdapters::Column.value_to_date value end |