aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-12-05 16:16:52 -0500
committerGitHub <noreply@github.com>2016-12-05 16:16:52 -0500
commitd7f55e987849c5a17f9d3152abd4fbacac08a509 (patch)
tree4c6d98ed9f1a35a13ccb2f7be3d903a05a3a6ec8 /activerecord/CHANGELOG.md
parent575212a1ba2e4d170985531402c6e3d27af5a0ea (diff)
parent3e452b12043ecfd983c6132d6eb97eb79db952b7 (diff)
downloadrails-d7f55e987849c5a17f9d3152abd4fbacac08a509.tar.gz
rails-d7f55e987849c5a17f9d3152abd4fbacac08a509.tar.bz2
rails-d7f55e987849c5a17f9d3152abd4fbacac08a509.zip
Merge pull request #26266 from jmccartie/jm/bigint
Change Default Primary Keys to BIGINT
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 96d0ad3b30..2182ee78bb 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* PostgreSQL & MySQL: Use big integer as primary key type for new tables
+
+ *Jon McCartie*, *Pavel Pravosud*
+
* Change the type argument of `ActiveRecord::Base#attribute` to be optional.
The default is now `ActiveRecord::Type::Value.new`, which provides no type
casting behavior.