diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2012-07-19 09:05:54 +0300 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2012-07-19 09:05:54 +0300 |
commit | 24705014b845cc0202a1fd8866e9981af742453f (patch) | |
tree | e41924fef9cb704e2fc3a6c742ba5a81e4e323fc | |
parent | 993e1643650b7b0939437f86b7b4cda0d92b0b8f (diff) | |
download | rails-24705014b845cc0202a1fd8866e9981af742453f.tar.gz rails-24705014b845cc0202a1fd8866e9981af742453f.tar.bz2 rails-24705014b845cc0202a1fd8866e9981af742453f.zip |
Use attributes instead of table names in migration example
-rw-r--r-- | activerecord/CHANGELOG.md | 2 |
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* |