aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/offset.rb
blob: baa4068d935c078ed9d1993cda37f6809dc6c9f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class Offset
      attr_accessor :value

      def initialize value
        @value = value
      end
    end
  end
end