aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2014-12-31 00:07:22 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2014-12-31 00:07:22 +0530
commite2fcaf804fd9bbae45a74ad18e4797d136fa4a22 (patch)
treeca6130a42b3b4847658631ed4d9d069af4501268 /activerecord/CHANGELOG.md
parent436de495f364672e3ba4dbdf77822058b40c2a4c (diff)
downloadrails-e2fcaf804fd9bbae45a74ad18e4797d136fa4a22.tar.gz
rails-e2fcaf804fd9bbae45a74ad18e4797d136fa4a22.tar.bz2
rails-e2fcaf804fd9bbae45a74ad18e4797d136fa4a22.zip
Update CHANGELOG entry for #18070 [ci skip]
- Improved wording of CHANGELOG entry for https://github.com/arthurnn/rails/commit/5acd24bbeae0e9e5e81e87b5929e17f35527b2ea.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 48c1027460..c78ddd5fe6 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,6 +1,7 @@
-* When table has a composite primary key, the `primary_key` method for
- sqlite3 and postgresql was only returning the first field of the key.
- Ensures that it will return nil instead, as AR dont support composite pks.
+* When a table has a composite primary key, the `primary_key` method for
+ SQLite3 and PostgreSQL adapters was only returning the first field of the key.
+ Ensures that it will return nil instead, as Active Record doesn't support
+ composite primary keys.
Fixes #18070.