aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/unqualified_column.rb
blob: b86b55307400ba0771c8d32e5f7234bee8abde11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  module Nodes
    class UnqualifiedColumn
      def initialize attribute
        @attribute = attribute
      end

      def name
        @attribute.name
      end
    end
  end
end