diff options
author | José Valim <jose.valim@gmail.com> | 2012-07-18 09:21:57 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-07-18 09:47:52 +0200 |
commit | e243a8a32eb4c8777f07ca4b974bd7e38d9477d3 (patch) | |
tree | 5f80a8a574602495f79bf2552c3da930c319f66e /activerecord | |
parent | 1b39d39af26ae44e4aecb0b48063f08bc5a9a500 (diff) | |
download | rails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.tar.gz rails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.tar.bz2 rails-e243a8a32eb4c8777f07ca4b974bd7e38d9477d3.zip |
Update changelog for migration generator change
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 7 |
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: |