aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-19 18:56:00 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-19 18:56:00 -0300
commit03035d69e14032a589e9653e3145237b8a9a09be (patch)
treea20b809cd5b17c706709a51594c0ab1480503c6c /activerecord/CHANGELOG.md
parent09cc922ed31bf699b26fafe4822fc7048b821825 (diff)
parentd0f8c46e1962b28d77209f367f12c2d2c77f4b12 (diff)
downloadrails-03035d69e14032a589e9653e3145237b8a9a09be.tar.gz
rails-03035d69e14032a589e9653e3145237b8a9a09be.tar.bz2
rails-03035d69e14032a589e9653e3145237b8a9a09be.zip
Merge pull request #15184 from sgrif/sg-remove-timestamp-type
Remove :timestamp column type
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index cf85ec637a..d186fd2c10 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Remove unused `:timestamp` type. Transparently alias it to `:datetime`
+ in all cases. Fixes inconsistencies when column types are sent outside of
+ `ActiveRecord`, such as for XML Serialization.
+
+ *Sean Griffin*
+
* Fix bug that added `table_name_prefix` and `table_name_suffix` to
extension names in PostgreSQL when migrating.