aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/inner_join.rb
blob: 519fafad09cb41f4274d0e6055903388f87fb087 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class InnerJoin < Arel::Nodes::Join
    end
  end
end