aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/less_than_or_equal.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-24 09:41:48 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-24 09:41:48 -0700
commit487df1771ded1fb065a53ebe9d1a5a9c119478e3 (patch)
treedacefa00fca782bcbd86bd5cf2476226253fc674 /lib/arel/nodes/less_than_or_equal.rb
parent7615bd7f928390d0ba9501e5206fd89ce6ce44fc (diff)
downloadrails-487df1771ded1fb065a53ebe9d1a5a9c119478e3.tar.gz
rails-487df1771ded1fb065a53ebe9d1a5a9c119478e3.tar.bz2
rails-487df1771ded1fb065a53ebe9d1a5a9c119478e3.zip
adding an oracle visitor
Diffstat (limited to 'lib/arel/nodes/less_than_or_equal.rb')
-rw-r--r--lib/arel/nodes/less_than_or_equal.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/arel/nodes/less_than_or_equal.rb b/lib/arel/nodes/less_than_or_equal.rb
new file mode 100644
index 0000000000..55449d12f1
--- /dev/null
+++ b/lib/arel/nodes/less_than_or_equal.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class LessThanOrEqual < Arel::Nodes::Binary
+ end
+ end
+end