aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-07-19 09:05:54 +0300
committerJosé Valim <jose.valim@plataformatec.com.br>2012-07-19 09:05:54 +0300
commit24705014b845cc0202a1fd8866e9981af742453f (patch)
treee41924fef9cb704e2fc3a6c742ba5a81e4e323fc /activerecord
parent993e1643650b7b0939437f86b7b4cda0d92b0b8f (diff)
downloadrails-24705014b845cc0202a1fd8866e9981af742453f.tar.gz
rails-24705014b845cc0202a1fd8866e9981af742453f.tar.bz2
rails-24705014b845cc0202a1fd8866e9981af742453f.zip
Use attributes instead of table names in migration example
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 4a44fd33fd..33d94e29bc 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -3,7 +3,7 @@
* 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
+ rails g migration create_join_table_for_artists_and_musics artist_id:index music_id
*Aleksey Magusev*