aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/insert_statement.rb
blob: ed601aa841e95e973e366281f9a1f96575cf4586 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                
module Arel
  module Nodes
    class InsertStatement
      attr_accessor :relation, :columns, :values

      def initialize
        @relation = nil
        @columns  = []
        @values   = []
      end
    end
  end
end