mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Map Active Record time to SQL TIME. Closes #2576.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2713 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ module ActiveRecord
|
||||
: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 }
|
||||
|
||||
Reference in New Issue
Block a user