aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/integer.rb
blob: 5510a11bd41828c3c1487b5ad67fa3cd1c4a62d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Integer < Value # :nodoc:
        def type
          :integer
        end
      end
    end
  end
end