aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README.rdoc
diff options
context:
space:
mode:
authorsuginoy <suginoyasuhiro@gmail.com>2017-10-28 23:38:15 +0900
committersuginoy <suginoyasuhiro@gmail.com>2017-10-29 00:27:03 +0900
commitaa0865a8f07f889006a8b2ab1849aad6ab5f8fea (patch)
tree456b57cf830ec6b26b149570055fa9c22630531f /activerecord/README.rdoc
parente4eaf8faae03f31b110aee0baefcf7fb48536f5b (diff)
downloadrails-aa0865a8f07f889006a8b2ab1849aad6ab5f8fea.tar.gz
rails-aa0865a8f07f889006a8b2ab1849aad6ab5f8fea.tar.bz2
rails-aa0865a8f07f889006a8b2ab1849aad6ab5f8fea.zip
[ci skip]Update the documentation about the primary key type
Replace the primary key type `integer` in docs with `bigint`. ref #26266
Diffstat (limited to 'activerecord/README.rdoc')
-rw-r--r--activerecord/README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/README.rdoc b/activerecord/README.rdoc
index ae53ecd177..ba83a9adb2 100644
--- a/activerecord/README.rdoc
+++ b/activerecord/README.rdoc
@@ -26,7 +26,7 @@ The Product class is automatically mapped to the table named "products",
which might look like this:
CREATE TABLE products (
- id int NOT NULL auto_increment,
+ id bigint NOT NULL auto_increment,
name varchar(255),
PRIMARY KEY (id)
);