Improve readability of case sensitivity description

This commit is contained in:
Dave Powers 2023-07-20 16:30:16 -04:00 committed by GitHub
parent 0ccde297a1
commit f7c5e7e75c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -738,9 +738,9 @@ details about multiple column indexes or [the PostgreSQL manual][] for examples
of unique constraints that refer to a group of columns.
There is also a `:case_sensitive` option that you can use to define whether the
uniqueness constraint will be case sensitive, case insensitive, or respects
default database collation. This option defaults to respects default database
collation.
uniqueness constraint will be case sensitive, case insensitive, or if it should
respect the default database collation. This option defaults to respecting the
default database collation.
```ruby
class Person < ApplicationRecord