March 6, 2019
This blog is part of our Rails 6 series.
When an enum attribute is defined on a model, Rails adds some default scopes to filter records based on values of enum on enum field.
Here is how enum scope can be used.
class Post < ActiveRecord::Base
enum status: %i[drafted active trashed]
end
Post.drafted # => where(status: :drafted)
Post.active # => where(status: :active)
In Rails 6, negative scopes are added on the enum values.
As mentioned by DHH in the pull request,
these negative scopes are convenient when you want to disallow access in controllers
Here is how they can be used.
class Post < ActiveRecord::Base
enum status: %i[drafted active trashed]
end
Post.not_drafted # => where.not(status: :drafted)
Post.not_active # => where.not(status: :active)
Check out the pull request for more details on this.
If this blog was helpful, check out our full blog archive.