aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/table.rb')
-rw-r--r--lib/arel/table.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/arel/table.rb b/lib/arel/table.rb
index b3a1a105d8..f115caaab3 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -37,6 +37,10 @@ module Arel
end
end
+ def order *expr
+ tm.order *expr
+ end
+
def where condition
tm.where condition
end