aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2013-03-02 10:03:04 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2013-03-02 10:03:04 +0000
commitc09f934dcb2d02763777e7fd025cdc33bc8ec8bb (patch)
tree5a00fc27911ee2da06a41ca49f7d3049704e5762 /activerecord/CHANGELOG.md
parent2d4068dbeff7313ab332538b3934cfbf10445104 (diff)
parent2cc09441c2de57b024b11ba666ba1e72c2b20cfe (diff)
downloadrails-c09f934dcb2d02763777e7fd025cdc33bc8ec8bb.tar.gz
rails-c09f934dcb2d02763777e7fd025cdc33bc8ec8bb.tar.bz2
rails-c09f934dcb2d02763777e7fd025cdc33bc8ec8bb.zip
Merge pull request #9431 from troyk/patch-2
Fix PostgreSQL TIMESTAMP WITH TIME ZONE to return ActiveSupport::Time
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index c5bef0a6e6..2eaf388095 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Postgresql timestamp with time zone (timestamptz) datatype now returns a
+ ActiveSupport::TimeWithZone instance instead of a string
+
+ *Troy Kruthoff*
+
* The `#append` method for collection associations behaves like`<<`.
`#prepend` is not defined and `<<` or `#append` should be used.
Fixes #7364.