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 62bef5f1cf..d77574f33e 100644
--- a/lib/arel/attributes/attribute.rb
+++ b/lib/arel/attributes/attribute.rb
@@ -28,6 +28,10 @@ module Arel
def gteq right
Nodes::GreaterThanOrEqual.new self, right
end
+
+ def gt right
+ Nodes::GreaterThan.new self, right
+ end
end
class String < Attribute; end