mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Map AR time to PostgreSQL TIME. Closes #2575.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2712 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*1.12.1* (October 19th, 2005)
|
||||
|
||||
* Map Active Record time to PostgreSQL time. #2575 [Robby Russell <robby@planetargon.com>]
|
||||
|
||||
* Clarify semantics of ActiveRecord::Base#respond_to? #2560 [skaes@web.de]
|
||||
|
||||
* Fixed Association#clear for associations which have not yet been accessed. #2524 [Patrick Lenz <patrick@lenz.sh>]
|
||||
|
||||
@@ -61,7 +61,7 @@ module ActiveRecord
|
||||
:float => { :name => "float" },
|
||||
:datetime => { :name => "timestamp" },
|
||||
:timestamp => { :name => "timestamp" },
|
||||
:time => { :name => "timestamp" },
|
||||
:time => { :name => "time" },
|
||||
:date => { :name => "date" },
|
||||
:binary => { :name => "bytea" },
|
||||
:boolean => { :name => "boolean" }
|
||||
|
||||
Reference in New Issue
Block a user