diff options
Diffstat (limited to 'lib/active_relation/relations/compound.rb')
-rw-r--r-- | lib/active_relation/relations/compound.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/active_relation/relations/compound.rb b/lib/active_relation/relations/compound.rb new file mode 100644 index 0000000000..442224a011 --- /dev/null +++ b/lib/active_relation/relations/compound.rb @@ -0,0 +1,9 @@ +module ActiveRelation + module Relations + class Compound < Base + attr_reader :relation + + delegate :attributes, :attribute, :joins, :selects, :orders, :table, :inserts, :limit, :offset, :to => :relation + end + end +end
\ No newline at end of file |