Ruby on Rails 7.1 and the Power of Attribute Value Normalization with Active Record

Gonzalo Galdámez
Unagi
Published in
2 min readNov 22, 2023
Ruby on Rails 7.1 and the Power of Attribute Value Normalization with Active Record — freepik Illustration

Making sure that attribute values are consistent is really important for handling and getting data efficiently. In Rails 7.1, ActiveRecord introduced a great feature — attribute value normalization — that makes it easier to keep your data standardized across your application.

Attribute Value Normalization with ActiveRecord::Base::normalizes

The normalizes method in ActiveRecord lets you specify normalizations for attribute values. This means that whenever attributes are assigned or updated, the specified normalizations will be applied, and the cleaned values will be seamlessly saved in the database.

Let’s look at a practical example to show how powerful attribute value normalization can be:

class User < ActiveRecord::Base
normalizes :email, with: -> email { email.strip.downcase }
end

In this case, the normalization focuses on the email attribute: any assigned or updated email value undergoes a normalization process—specifically, removing leading and trailing whitespaces and converting the email to lowercase.

Putting Normalization into Practice

Now, let’s see the attribute value normalization in action:

user = User.create(email: " ROSS-GELLER@FRIENDS.COM\n")
user.email # => "ross-geller@friends.com"

Here, when a new user is created, the email value is automatically cleaned to ensure consistency and remove unnecessary whitespace.

Effortless Querying with Unnormalized Values

Attribute value normalization isn’t just about data input — it also improves querying capabilities. Even if a user is queried with an unnormalized email value, ActiveRecord applies the normalization before executing the query:

user = User.find_by(email: "/tROSS-GELLER@FRIENDS.COM ")
user.email # => "ross-geller@friends.com"

In this situation, the user is successfully found using the unnormalized email value. ActiveRecord smartly applies normalization, making it easier for developers to work with data in its most natural form.

Embrace Consistency and Efficiency

By integrating attribute value normalization into your ActiveRecord models, you ensure that your application’s data remains consistent, no matter the input variations. This not only simplifies the management of your database but also enables your application to smoothly handle both normalized and unnormalized values during queries.

In summary, attribute value normalization in ActiveRecord is a powerful tool that promotes data consistency, enhances query flexibility, and ultimately contributes to a more robust and efficient application.

Unagi has been offering software development services in Ruby and Javascript for +11 years. Read more about us on any of our media.

--

--