Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 2712

Show
Ignore:
Timestamp:
10/23/05 16:54:38 (3 years ago)
Author:
bitsweat
Message:

Map AR time to PostgreSQL TIME. Closes #2575.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/CHANGELOG

    r2705 r2712  
    11*1.12.1* (October 19th, 2005) 
     2 
     3* Map Active Record time to PostgreSQL time.  #2575 [Robby Russell <robby@planetargon.com>] 
    24 
    35* Clarify semantics of ActiveRecord::Base#respond_to?  #2560 [skaes@web.de] 
  • trunk/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb

    r2680 r2712  
    6262          :datetime    => { :name => "timestamp" }, 
    6363          :timestamp   => { :name => "timestamp" }, 
    64           :time        => { :name => "timestamp" }, 
     64          :time        => { :name => "time" }, 
    6565          :date        => { :name => "date" }, 
    6666          :binary      => { :name => "bytea" },