aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-07-18 09:21:57 +0200
committerJosé Valim <jose.valim@gmail.com>2012-07-18 09:47:52 +0200
commite243a8a32eb4c8777f07ca4b974bd7e38d9477d3 (patch)
tree5f80a8a574602495f79bf2552c3da930c319f66e /activerecord/CHANGELOG.md
parent1b39d39af26ae44e4aecb0b48063f08bc5a9a500 (diff)
downloadrails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.tar.gz
rails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.tar.bz2
rails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.zip
Update changelog for migration generator change
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 36d94fb38b..4a44fd33fd 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,12 @@
## Rails 4.0.0 (unreleased) ##
+* The migration generator now creates a join table with (commented) indexes every time
+ the migration name contains the word `join_table`:
+
+ rails g migration create_join_table_for_artists_and_musics artists:index musics
+
+ *Aleksey Magusev*
+
* Add `add_reference` and `remove_reference` schema statements. Aliases, `add_belongs_to`
and `remove_belongs_to` are acceptable. References are reversible.
Examples: