diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-11-07 08:55:38 -0500 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-11-07 08:55:38 -0500 |
commit | 3894fd913fade3e69b53df74a3a5f78d727aeb69 (patch) | |
tree | f9b8ad78a3f62d2187f3d6f614e4617d68f91fa9 /guides/source | |
parent | af3ac5022ec252e45c14f460875edadfb7a64d38 (diff) | |
parent | 2d53593ae66388bf1f72c966b063a1cc15d22dac (diff) | |
download | rails-3894fd913fade3e69b53df74a3a5f78d727aeb69.tar.gz rails-3894fd913fade3e69b53df74a3a5f78d727aeb69.tar.bz2 rails-3894fd913fade3e69b53df74a3a5f78d727aeb69.zip |
Merge pull request #22145 from atul-shimpi/master
guides, the required option in generators is no longer available.
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_migrations.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index 67881e6087..5aa5dc4f60 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -454,8 +454,6 @@ number of digits after the decimal point. are using a dynamic value (such as a date), the default will only be calculated the first time (i.e. on the date the migration is applied). * `index` Adds an index for the column. -* `required` Adds `required: true` for `belongs_to` associations and -`null: false` to the column in the migration. Some adapters may support additional options; see the adapter specific API docs for further information. |