aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 5115d4b4d1..43232443e7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,5 @@
-* Allow to specify a type for created foreign key column in `references` and
- `add_reference` in migrations.
+* Allow to specify a type for the foreign key column in `references`
+ and `add_reference`.
Example:
@@ -7,7 +7,7 @@
t.references :station, type: :uuid
end
- *Andrey Novikov & Łukasz Sarnacki*
+ *Andrey Novikov*, *Łukasz Sarnacki*
* `create_join_table` removes a common prefix when generating the join table.
This matches the existing behavior of HABTM associations.