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:
Jeremy Kemper
2005-10-23 16:54:38 +00:00
parent cdd49c5360
commit 76487f25e7
2 changed files with 3 additions and 1 deletions

View File

@@ -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>]

View File

@@ -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" }