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 434f19cc6b..28243e645e 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -41,6 +41,10 @@ module Arel
end
end
+ def group *columns
+ tm.group(*columns)
+ end
+
def order *expr
tm.order(*expr)
end