Copy edit the CHANGELOG

Active Record names has space between the words.
This commit is contained in:
Rafael Mendonça França 2022-06-29 22:14:48 +00:00
parent 4755259a65
commit 92fa470aaa
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
1 changed files with 4 additions and 4 deletions

View File

@ -182,10 +182,10 @@
* Avoid validating a unique field if it has not changed and is backed by a unique index.
Previously, when saving a record, ActiveRecord will perform an extra query to check for the uniqueness of
each attribute having a `uniqueness` validation, even if that attribute hasn't changed.
If the database has the corresponding unique index, then this validation can never fail for persisted records,
and we could safely skip it.
Previously, when saving a record, Active Record will perform an extra query to check for the
uniqueness of each attribute having a `uniqueness` validation, even if that attribute hasn't changed.
If the database has the corresponding unique index, then this validation can never fail for persisted
records, and we could safely skip it.
*fatkodima*