Skip to content

Commit

Permalink
Map Active Record time to SQL TIME. Closes #2576.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2713 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Oct 23, 2005
1 parent 76487f2 commit 76879f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*1.12.1* (October 19th, 2005)

* Map Active Record time to PostgreSQL time. #2575 [Robby Russell <robby@planetargon.com>]
* Map Active Record time to SQL TIME. #2575, #2576 [Robby Russell <robby@planetargon.com>]

* Clarify semantics of ActiveRecord::Base#respond_to? #2560 [skaes@web.de]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def native_database_types #:nodoc
:float => { :name => "float" },
:datetime => { :name => "datetime" },
:timestamp => { :name => "datetime" },
:time => { :name => "datetime" },
:time => { :name => "time" },
:date => { :name => "date" },
:binary => { :name => "blob" },
:boolean => { :name => "tinyint", :limit => 1 }
Expand Down

0 comments on commit 76879f2

Please sign in to comment.