aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/enum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/enum.rb')
-rw-r--r--activerecord/lib/active_record/enum.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/enum.rb b/activerecord/lib/active_record/enum.rb
index 1afbfb1977..470e0b5d29 100644
--- a/activerecord/lib/active_record/enum.rb
+++ b/activerecord/lib/active_record/enum.rb
@@ -36,6 +36,7 @@ module ActiveRecord
# needs:
#
# Conversation.where(status: [:active, :archived])
+ # Conversation.where.not(status: :active)
#
# You can set the default value from the database declaration, like:
#
@@ -69,9 +70,8 @@ module ActiveRecord
# Conversation.statuses[:active] # => 0
# Conversation.statuses["archived"] # => 1
#
- # Use that class method when you need to know the ordinal value of an enum. For
- # example, you can use that when manually building a SQL string inside a `where`
- # condition:
+ # Use that class method when you need to know the ordinal value of an enum.
+ # For example, you can use that when manually building SQL strings:
#
# Conversation.where("status <> ?", Conversation.statuses[:archived])
#