diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-29 20:57:02 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-29 20:57:02 -0300 |
commit | 470519d6b7acc9c17c2cf8f0623f2eeb762b007a (patch) | |
tree | f2edcd064f65a093bfc22df6d375b90b2be09fd8 | |
parent | 92404265df259ea4d7c9da8d5ed6dff261e31a68 (diff) | |
parent | f5d6aaa31bc86e01209af767d6a3c7b5617e6911 (diff) | |
download | rails-470519d6b7acc9c17c2cf8f0623f2eeb762b007a.tar.gz rails-470519d6b7acc9c17c2cf8f0623f2eeb762b007a.tar.bz2 rails-470519d6b7acc9c17c2cf8f0623f2eeb762b007a.zip |
Merge pull request #20739 from jordondornbos/patch-1
fix pluralization in doc [ci skip]
-rw-r--r-- | guides/source/active_record_migrations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index 0b84001ca5..ce605c912e 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -477,7 +477,7 @@ column names can not be derived from the table names, you can use the `:column` and `:primary_key` options. Rails will generate a name for every foreign key starting with -`fk_rails_` followed by 10 character which is deterministically +`fk_rails_` followed by 10 characters which are deterministically generated from the `from_table` and `column`. There is a `:name` option to specify a different name if needed. |