Fix typo, add missing "to"

The word "to" is missing from this sentence
This commit is contained in:
Missy Davies 2022-10-05 17:25:34 -04:00 committed by GitHub
parent 32aaf11a09
commit db17b94e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ add_reference :users, :role
```
This migration will create a `role_id` column in the users table. It creates an
index for this column as well, unless explicitly told not with the
index for this column as well, unless explicitly told not to with the
`index: false` option:
```ruby