diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/algebra/attributes/attribute.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/arel/algebra/attributes/attribute.rb b/lib/arel/algebra/attributes/attribute.rb index 640d6facde..64ea93d227 100644 --- a/lib/arel/algebra/attributes/attribute.rb +++ b/lib/arel/algebra/attributes/attribute.rb @@ -84,15 +84,15 @@ module Arel module Predications methods = { :eq => "Equality", - :noteq => "Inequality", + :not_eq => "Inequality", :lt => "LessThan", :lteq => "LessThanOrEqualTo", :gt => "GreaterThan", :gteq => "GreaterThanOrEqualTo", :matches => "Match", - :notmatches => "NotMatch", + :not_matches => "NotMatch", :in => "In", - :notin => "NotIn" + :not_in => "NotIn" } def self.predication(name, klass) |