aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/attributes/attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/attributes/attribute.rb')
-rw-r--r--lib/arel/attributes/attribute.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/arel/attributes/attribute.rb b/lib/arel/attributes/attribute.rb
index d77574f33e..617112f681 100644
--- a/lib/arel/attributes/attribute.rb
+++ b/lib/arel/attributes/attribute.rb
@@ -1,6 +1,10 @@
module Arel
module Attributes
class Attribute < Struct.new :relation, :name, :column
+ def not_eq other
+ Nodes::NotEqual.new self, other
+ end
+
def eq other
Nodes::Equality.new self, other
end