diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2019-03-30 10:35:28 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 10:35:28 +0530 |
commit | 360ff0a5934e32f49a2328b32b413ff58d6d79f1 (patch) | |
tree | 9be88030c7430cadce5260f21e52ebd680050a73 /guides | |
parent | bd2223f07b6eb70d156652067385605360712057 (diff) | |
parent | 098d857fbf0e5a9e859835527858f7689122fafd (diff) | |
download | rails-360ff0a5934e32f49a2328b32b413ff58d6d79f1.tar.gz rails-360ff0a5934e32f49a2328b32b413ff58d6d79f1.tar.bz2 rails-360ff0a5934e32f49a2328b32b413ff58d6d79f1.zip |
Merge pull request #35797 from abhaynikam/35752-update-migration-doc-column-identifier
[ci skip] Updated docs to reflect index: true option not available as column modifier
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_migrations.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index 50d4a4c57d..270e4a3bf9 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -465,7 +465,6 @@ number of digits after the decimal point. * `default` Allows to set a default value on the column. Note that if you 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. * `comment` Adds a comment for the column. Some adapters may support additional options; see the adapter specific API docs |