aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-05 14:42:03 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-05 14:42:03 -0300
commitd25e0c6f6a2764fb2605dc216e5c4b26a74f7e97 (patch)
tree75bf9fcc5dba32c7dc0d15708dafabe9e32b963b /activerecord/CHANGELOG.md
parent877dfcbb6437acfd56c7ead4f9998b5b0bf82c0e (diff)
parent661365e7ce445955996c9024b76cea84e4f31a02 (diff)
downloadrails-d25e0c6f6a2764fb2605dc216e5c4b26a74f7e97.tar.gz
rails-d25e0c6f6a2764fb2605dc216e5c4b26a74f7e97.tar.bz2
rails-d25e0c6f6a2764fb2605dc216e5c4b26a74f7e97.zip
Merge pull request #10098 from subwindow/postgres_dump_bigint_default
Correctly parse bigint defaults in PostgreSQL Conflicts: activerecord/CHANGELOG.md
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 e1d3686b95..0ab01d6183 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Default values for PostgreSQL bigint types now get parsed and dumped to the
+ schema correctly.
+
+ *Erik Peterson*
+
* Fix associations with `:inverse_of` option when building association
with a block. Inside the block the parent object was different then
after the block.