aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/date_time.rb
Commit message (Collapse)AuthorAgeFilesLines
* Move array database type casting to the Array typeSean Griffin2014-06-171-0/+10
| | | | | | | | | The case where we have a column object, but don't have a type cast method involves type casting the default value when changing the schema. We get one of the column definition structs instead. That is a case that I'm trying to remove overall, but in the short term, we can achieve the same behavior without needing to pass the adapter to the array type by creating a fake type that proxies to the adapter.
* Move types to the top level `ActiveRecord` namespaceSean Griffin2014-05-271-0/+33
`ActiveRecord::ConnectionAdapters::Type::Value` => `ActiveRecord::Type::Value`